Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ init:
- micromamba config set always_yes true
- micromamba config prepend channels conda-forge
- micromamba info
- ps: |
if ($env:APPVEYOR_REPO_COMMIT_MESSAGE -like "*[verbose]*") {
$env:PYTEST_ARGS += " -vv"
echo "Verbose logging enabled via commit message."
}

install:
- set EXTRA_PACKAGES=pywin32 codecov
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,10 @@ jobs:
if: matrix.delete-font-cache

- name: Run pytest
env:
PYTEST_ADDOPTS: >-
${{ (contains(github.event.pull_request.labels.*.name, 'ci:verbose') ||
contains(github.event.head_commit.message, '[verbose]')) && '-vv' || '' }}
run: |
if [[ "${{ matrix.python-version }}" == '3.14t' ]]; then
export PYTHON_GIL=0
Expand Down
9 changes: 9 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ stages:
- script: pip list
displayName: 'print pip'

- bash: |
echo "##vso[task.setvariable variable=PYTEST_ADDOPTS]-vv"
displayName: 'Enable verbose logging'
condition: |
or(
contains(variables['Build.SourceVersionMessage'], '[verbose]'),
contains(variables['System.PullRequest.Labels'], 'ci:verbose')
)

- bash: |
set -e
SESSION_ID=$(python -c "import uuid; print(uuid.uuid4(), end='')")
Expand Down
Loading