File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
1116jobs :
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
You can’t perform that action at this time.
0 commit comments