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 64ac56d commit 70ecfcbCopy full SHA for 70ecfcb
.github/workflows/build.yml
@@ -19,9 +19,10 @@ jobs:
19
run: |
20
python -m pip install --upgrade pip
21
pip install -r requirements.txt
22
+ pip install coveralls
23
- name: Run unit tests
24
- python -m pytest
25
+ python -m pytest --cov=iamport tests
26
- name: Run convention tests
27
28
python -m flake8 iamport tests --ignore E203,W503,W504
requirements.txt
@@ -1,6 +1,7 @@
1
requests==2.26.0
2
pytest==6.2.4
3
+pytest-cov==2.12.1
4
flake8==3.9.2
5
isort==5.9.3
6
mypy==0.910
-types-requests==2.25.6
7
+types-requests==2.25.6
0 commit comments