File tree Expand file tree Collapse file tree 5 files changed +105
-103
lines changed Expand file tree Collapse file tree 5 files changed +105
-103
lines changed Original file line number Diff line number Diff line change 41
41
- name : Install dependencies
42
42
run : poetry install --no-root
43
43
- name : Run tox
44
- run : poetry run tox -e flake8
44
+ run : poetry run tox -e flake8 -s false
45
45
46
46
static-code-analysis :
47
47
name : StaticCodingAnalysis (py${{ matrix.python-version}} ${{ matrix.toxenv-factor }})
75
75
- name : Install dependencies
76
76
run : poetry install --no-root
77
77
- name : Run tox
78
- run : poetry run tox -e mypy-${{ matrix.toxenv-factor }}
78
+ run : poetry run tox -e mypy-${{ matrix.toxenv-factor }} -s false
79
79
80
80
build-and-test :
81
81
name : Test (${{ matrix.os }} py${{ matrix.python-version }} ${{ matrix.toxenv-factor }})
98
98
- # test with the lowest dependencies
99
99
os : ' ubuntu-latest'
100
100
python-version : ' 3.6'
101
- toxenv : ' lowest'
101
+ toxenv-factor : ' lowest'
102
102
steps :
103
103
- name : Disabled Git auto EOL CRLF transforms
104
104
run : |
@@ -131,7 +131,7 @@ jobs:
131
131
- name : Generate coverage reports
132
132
run : >
133
133
poetry run coverage report &&
134
- poetry run coverage xml -o ${{ env.REPORTS_DIR }}/coverage-${{ matrix.os }}-${{ matrix.python-version }}.xml &&
134
+ poetry run coverage xml -o ${{ env.REPORTS_DIR }}/coverage-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.toxenv-factor }} .xml &&
135
135
poetry run coverage html -d ${{ env.REPORTS_DIR }}
136
136
- name : Artifact reports
137
137
if : ${{ ! cancelled() }}
You can’t perform that action at this time.
0 commit comments