We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9886b36 commit a744618Copy full SHA for a744618
.github/workflows/test.yaml
@@ -52,16 +52,18 @@ jobs:
52
python -m pip install --upgrade pip wheel
53
- name: Install dependencies
54
run: |
55
- pip install ${{ matrix.pip-flags }} ".[dev,test]"
+ python -m pip install ${{ matrix.pip-flags }} ".[dev,test]"
56
- name: Test
57
env:
58
MPLBACKEND: agg
59
PLATFORM: ${{ matrix.os }}
60
DISPLAY: :42
61
62
- coverage run -m pytest -v --color=yes
+ python -m coverage run -m pytest -v --color=yes
63
- name: Report coverage
64
65
- coverage report
+ python -m coverage report
66
- name: Upload coverage
67
uses: codecov/codecov-action@v3
68
+ with:
69
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments