We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad45df commit 344d9baCopy full SHA for 344d9ba
.github/workflows/codecov.yml
@@ -11,7 +11,7 @@ jobs:
11
with:
12
python-version: '3.10'
13
- name: Install dependencies
14
- run: pip install -r .
+ run: pip install .
15
- name: Run tests and collect coverage
16
run: pytest --cov .
17
- name: Upload coverage to Codecov
setup.py
@@ -29,7 +29,9 @@
29
'parameterized==0.8.1',
30
'pyparsing==3.0.6',
31
'ipranger==1.1.2',
32
- 'python-dateutil==2.8.2'
+ 'python-dateutil==2.8.2',
33
+ 'pytest==7.3.1',
34
+ 'pytest-cov==4.0.0'
35
],
36
include_package_data=True,
37
)
0 commit comments