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 13dc084 commit bebbb0aCopy full SHA for bebbb0a
.github/workflows/codecov.yml
@@ -1,4 +1,4 @@
1
-name: API workflow
+name: Codecov Action
2
3
on: [push, pull_request]
4
@@ -9,9 +9,11 @@ jobs:
9
steps:
10
- uses: actions/checkout@v1
11
- name: Install requirements
12
- run: pip install -r requirements.txt
+ run: |
13
+ pip install -r requirements-tests.txt
14
+ pip install -r requirements-dev.txt
15
- name: Run tests and collect coverage
- run: pytest --cov ./tests
16
+ run: make tests
17
- name: Upload coverage reports to Codecov
18
run: |
19
# Replace `linux` below with the appropriate OS
requirements-tests.txt
@@ -5,3 +5,4 @@
5
6
pytest >= 6.2.0
7
requests >= 2.25.1
8
+pytest-cov
0 commit comments