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 7bc4528 commit 36efe18Copy full SHA for 36efe18
.github/workflows/main.yml
@@ -25,7 +25,7 @@ jobs:
25
- name: Set up Python
26
uses: actions/setup-python@v2
27
with:
28
- python-version: "3.x"
+ python-version: "3.7"
29
30
- name: Install global dependencies
31
run: python -m pip install -U pip setuptools wheel
@@ -40,10 +40,10 @@ jobs:
40
run: pip install .
41
42
- name: Run tests
43
- run: coverage run --source src -m unittest discover -s tests -v
+ run: coverage run -m unittest discover -s tests -v
44
45
- name: Generate coverage report
46
- run: coverage report
+ run: coverage report && coverage xml -i
47
48
- name: Upload coverage report to Codecov
49
uses: codecov/codecov-action@v1
0 commit comments