Skip to content

Commit a744618

Browse files
committed
update codecov test
1 parent 9886b36 commit a744618

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,18 @@ jobs:
5252
python -m pip install --upgrade pip wheel
5353
- name: Install dependencies
5454
run: |
55-
pip install ${{ matrix.pip-flags }} ".[dev,test]"
55+
python -m pip install ${{ matrix.pip-flags }} ".[dev,test]"
5656
- name: Test
5757
env:
5858
MPLBACKEND: agg
5959
PLATFORM: ${{ matrix.os }}
6060
DISPLAY: :42
6161
run: |
62-
coverage run -m pytest -v --color=yes
62+
python -m coverage run -m pytest -v --color=yes
6363
- name: Report coverage
6464
run: |
65-
coverage report
65+
python -m coverage report
6666
- name: Upload coverage
6767
uses: codecov/codecov-action@v3
68+
with:
69+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)