We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b30d5a commit 607e259Copy full SHA for 607e259
.github/workflows/test-package.yml
@@ -29,7 +29,7 @@ jobs:
29
30
- name: Install dependencies
31
run: |
32
- pip install --upgrade pip
+ python -m pip install --upgrade pip
33
pip install -r requirements.txt
34
pip install -r requirements-test.txt
35
@@ -39,12 +39,12 @@ jobs:
39
40
- name: Run mypy
41
42
- mypy fsutil --install-types --non-interactive
+ mypy --install-types --non-interactive
43
44
- name: Run tests
45
46
- coverage run --append --source=fsutil -m unittest
47
- coverage report -m
+ coverage run --append -m unittest discover
+ coverage report --show-missing
48
coverage xml -o ./coverage.xml
49
50
- name: Upload coverage to Codecov
0 commit comments