Skip to content

Commit

Permalink
Fix workflow again
Browse files Browse the repository at this point in the history
  • Loading branch information
doosuu committed Jan 18, 2024
1 parent 55a0d0e commit 4f15888
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 24 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,24 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install required packages
run: |
pip install -r requirements-dev.txt
pip install -r requirements.txt
pip install .
- name: unit test
shell: bash
run: |
pytest \
--junit-xml=./results/UnitTest/junit.xml
echo $(pytest --version)
pytest --junit-xml=./results/UnitTest/junit.xml \
--cov-report=xml:results/CodeCoverage/cobertura-coverage.xml \
--cov-branch
--cov \
--cov-branch .
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
Expand Down
23 changes: 3 additions & 20 deletions NOTICE-3RD-PARTY-CONTENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,47 +3,30 @@
## Python
| Dependency | Version | License |
|:-----------|:-------:|--------:|
|bandit|1.7.6|Apache 2.0|
|black|23.12.1|MIT|
|cfgv|3.4.0|MIT|
|click|8.1.7|New BSD|
|distlib|0.3.8|Python Software Foundation License|
|exceptiongroup|1.2.0|MIT|
|filelock|3.13.1|The Unlicense (Unlicense)|
|flake8|7.0.0|MIT|
|gitdb|4.0.11|BSD|
|GitPython|3.1.41|New BSD|
|identify|2.5.33|MIT|
|iniconfig|2.0.0|MIT|
|isort|5.13.2|MIT|
|markdown-it-py|3.0.0|MIT|
|mccabe|0.7.0|MIT|
|mdurl|0.1.2|MIT|
|mypy|1.8.0|MIT|
|mypy-extensions|1.0.0|MIT|
|nodeenv|1.8.0|BSD|
|packaging|23.2|Apache 2.0<br/>BSD|
|pathspec|0.12.1|Mozilla Public License 2.0 (MPL 2.0)|
|pbr|6.0.0|Apache 2.0|
|platformdirs|4.1.0|MIT|
|pluggy|1.3.0|MIT|
|pre-commit|3.6.0|MIT|
|pycodestyle|2.11.1|MIT|
|pydocstyle|6.3.0|MIT|
|pyflakes|3.2.0|MIT|
|pygments|2.17.2|Simplified BSD|
|pytest|7.4.4|MIT|
|PyYAML|6.0.1|MIT|
|rich|13.7.0|MIT|
|setuptools|58.1.0|MIT|
|smmap|5.0.1|BSD|
|snowballstemmer|2.2.0|New BSD|
|stevedore|5.1.0|Apache 2.0|
|tomli|2.0.1|MIT|
|typing-extensions|4.9.0|Python Software Foundation License|
|virtualenv|20.25.0|MIT|
## Workflows
| Dependency | Version | License |
|:-----------|:-------:|--------:|
|actions/checkout|v4|MIT License|
|actions/setup-python|v5|MIT License|
|irongut/CodeCoverageSummary|v1.3.0|MIT License|
|mikepenz/action-junit-report|v3|Apache License 2.0|
|pre-commit/action|v3.0.0|MIT License|
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pytest>=2.7.2
pytest
pre-commit>=3.5.0
mypy

0 comments on commit 4f15888

Please sign in to comment.