Skip to content

Commit 1b8ac25

Browse files
Merge branch 'CycloneDX:main' into use-sorted-set
2 parents 71eeb4a + 32af991 commit 1b8ac25

File tree

5 files changed

+105
-103
lines changed

5 files changed

+105
-103
lines changed

.github/workflows/poetry.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install dependencies
4242
run: poetry install --no-root
4343
- name: Run tox
44-
run: poetry run tox -e flake8
44+
run: poetry run tox -e flake8 -s false
4545

4646
static-code-analysis:
4747
name: StaticCodingAnalysis (py${{ matrix.python-version}} ${{ matrix.toxenv-factor }})
@@ -75,7 +75,7 @@ jobs:
7575
- name: Install dependencies
7676
run: poetry install --no-root
7777
- 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
7979

8080
build-and-test:
8181
name: Test (${{ matrix.os }} py${{ matrix.python-version }} ${{ matrix.toxenv-factor }})
@@ -98,7 +98,7 @@ jobs:
9898
- # test with the lowest dependencies
9999
os: 'ubuntu-latest'
100100
python-version: '3.6'
101-
toxenv: 'lowest'
101+
toxenv-factor: 'lowest'
102102
steps:
103103
- name: Disabled Git auto EOL CRLF transforms
104104
run: |
@@ -131,7 +131,7 @@ jobs:
131131
- name: Generate coverage reports
132132
run: >
133133
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 &&
135135
poetry run coverage html -d ${{ env.REPORTS_DIR }}
136136
- name: Artifact reports
137137
if: ${{ ! cancelled() }}

0 commit comments

Comments
 (0)