Skip to content

Commit 4a49fc8

Browse files
committed
Run with DEBUG
1 parent 5260d95 commit 4a49fc8

1 file changed

Lines changed: 15 additions & 10 deletions

File tree

.github/workflows/Test.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
- 'v*' # only publish when pushing version tags (e.g., v1.0.0)
88
pull_request:
99
workflow_dispatch:
10+
inputs:
11+
pytest_args:
12+
description: 'Extra pytest arguments'
13+
required: false
14+
default: ''
1015

1116
jobs:
1217
test:
@@ -79,19 +84,19 @@ jobs:
7984
verbose: true
8085
emoji: true
8186
job-summary: true
82-
custom-arguments: '-v ./tests'
87+
custom-arguments: '-v --log-cli-level=DEBUG ${{ inputs.pytest_args }} ./tests/test_linearization.py'
8388
click-to-expand: true
8489
report-title: 'Test Report'
8590

86-
- name: Run pytest based on v4.0.0 compatibility layer
87-
uses: pavelzw/pytest-action@v2
88-
with:
89-
verbose: true
90-
emoji: true
91-
job-summary: true
92-
custom-arguments: '-v ./tests_v400'
93-
click-to-expand: true
94-
report-title: 'Test Report (v4.0.0 compatibility layer)'
91+
# - name: Run pytest based on v4.0.0 compatibility layer
92+
# uses: pavelzw/pytest-action@v2
93+
# with:
94+
# verbose: true
95+
# emoji: true
96+
# job-summary: true
97+
# custom-arguments: '-v ./tests_v400'
98+
# click-to-expand: true
99+
# report-title: 'Test Report (v4.0.0 compatibility layer)'
95100

96101
Publish:
97102
name: Publish to PyPI

0 commit comments

Comments
 (0)