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 d8e41be commit 68d443aCopy full SHA for 68d443a
.github/workflows/codecov.yml
@@ -34,10 +34,13 @@ jobs:
34
uses: actions/setup-python@v5
35
with:
36
python-version: ${{ matrix.python-version }}
37
+ - name: Install dependencies
38
+ run: |
39
+ python -m pip install --upgrade pip setuptools wheel
40
+ python -m pip install -r tests/requirements/${{ matrix.requirements-file }}
41
+ python -m pip install -e .
42
- name: Generate Report
43
run: |
- pip install -r tests/requirements/${{ matrix.requirements-file }}
- pip install -e .
44
coverage run ./run_tests.py
45
- name: Generate XML report
46
0 commit comments