File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,22 +44,22 @@ jobs:
4444
4545 - name : Test an coverage collect
4646 run : >
47- python3 -m coverage run -m pytest --verbose
47+ pipenv run coverage run -m pytest --verbose
4848 -o log_cli=true
4949 --log-cli-level=INFO
5050 src/
5151
5252 - name : Coverage Report
5353 run : |
54- python3 -m coverage report
54+ pipenv run coverage report
5555
5656 - name : Coverage lcov (codecov)
5757 run : |
58- python3 -m coverage lcov -o coverage/lcov.info
58+ pipenv run coverage lcov -o coverage/lcov.info
5959
6060 - name : Coverage xml (sonarcloud)
6161 run : |
62- python3 -m coverage xml -o coverage/coverage.xml
62+ pipenv run coverage xml -o coverage/coverage.xml
6363
6464 - name : Upload coverage artifact
6565 uses : actions/upload-artifact@v7
Original file line number Diff line number Diff line change 4242 - name : Install tooling on Windows
4343 if : runner.os == 'Windows'
4444 run : |
45- choco install pipenv -y
45+ py -m pip install --upgrade pip
46+ py -m pip install pipenv
4647 shell : pwsh
4748
4849 - name : Tooling check
@@ -58,20 +59,20 @@ jobs:
5859
5960 - name : Lint (pylint)
6061 run : |
61- pylint --verbose --recursive yes src/
62+ pipenv run pylint --verbose --recursive yes src/
6263
6364 - name : Lint (flake8)
6465 run : |
65- python3 -m flake8 --verbose src/
66+ pipenv run flake8 --verbose src/
6667
6768 - name : Lint (pyright) static type checker
6869 run : |
69- python3 -m pyright --verbose src/
70+ pipenv run pyright --verbose src/
7071
7172 - name : Styling (pycodestyle)
7273 run : |
73- python3 -m pycodestyle --statistics src/
74+ pipenv run pycodestyle --statistics src/
7475
7576 - name : Styling (autopep8)
7677 run : |
77- python3 -m autopep8 --diff --recursive --exit-code --verbose .
78+ pipenv run autopep8 --diff --recursive --exit-code --verbose .
Original file line number Diff line number Diff line change 4545 - name : Install tooling on Windows
4646 if : runner.os == 'Windows'
4747 run : |
48- choco install pipenv -y
48+ py -m pip install --upgrade pip
49+ py -m pip install pipenv
4950 shell : pwsh
5051
5152 - name : Tooling check
@@ -61,11 +62,11 @@ jobs:
6162
6263 - name : Test
6364 run : >
64- coverage run -m pytest --verbose
65+ pipenv run coverage run -m pytest --verbose
6566 -o log_cli=true
6667 --log-cli-level=INFO
6768 src/
6869
6970 - name : Coverage
7071 run : |
71- coverage report
72+ pipenv run coverage report
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments