Skip to content

Commit

Permalink
Merge branch 'CycloneDX:main' into use-sorted-set
Browse files Browse the repository at this point in the history
  • Loading branch information
RodneyRichardson authored Jun 6, 2022
2 parents 71eeb4a + 32af991 commit 1b8ac25
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 103 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install dependencies
run: poetry install --no-root
- name: Run tox
run: poetry run tox -e flake8
run: poetry run tox -e flake8 -s false

static-code-analysis:
name: StaticCodingAnalysis (py${{ matrix.python-version}} ${{ matrix.toxenv-factor }})
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Install dependencies
run: poetry install --no-root
- name: Run tox
run: poetry run tox -e mypy-${{ matrix.toxenv-factor }}
run: poetry run tox -e mypy-${{ matrix.toxenv-factor }} -s false

build-and-test:
name: Test (${{ matrix.os }} py${{ matrix.python-version }} ${{ matrix.toxenv-factor }})
Expand All @@ -98,7 +98,7 @@ jobs:
- # test with the lowest dependencies
os: 'ubuntu-latest'
python-version: '3.6'
toxenv: 'lowest'
toxenv-factor: 'lowest'
steps:
- name: Disabled Git auto EOL CRLF transforms
run: |
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Generate coverage reports
run: >
poetry run coverage report &&
poetry run coverage xml -o ${{ env.REPORTS_DIR }}/coverage-${{ matrix.os }}-${{ matrix.python-version }}.xml &&
poetry run coverage xml -o ${{ env.REPORTS_DIR }}/coverage-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.toxenv-factor }}.xml &&
poetry run coverage html -d ${{ env.REPORTS_DIR }}
- name: Artifact reports
if: ${{ ! cancelled() }}
Expand Down
Loading

0 comments on commit 1b8ac25

Please sign in to comment.