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 ed12e48 commit 09fab0bCopy full SHA for 09fab0b
.github/workflows/test.yml
@@ -88,5 +88,4 @@ jobs:
88
- name: Run tests
89
run: |
90
source .venv/bin/activate
91
- python -m unittest discover -s tests
92
- coverage report
+ coverage run -m unittest discover -s tests
pyproject.toml
@@ -10,6 +10,9 @@ readme = "README.md"
10
python = "^3.8"
11
requests= "^2.26.0"
12
13
+[tool.poetry.group.test.dependencies]
14
+coverage= "7.4.2"
15
+
16
[build-system]
17
requires = ["poetry-core"]
18
build-backend = "poetry.core.masonry.api"
0 commit comments