Skip to content

Commit 09fab0b

Browse files
committed
Fix test pipeline
1 parent ed12e48 commit 09fab0b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,4 @@ jobs:
8888
- name: Run tests
8989
run: |
9090
source .venv/bin/activate
91-
python -m unittest discover -s tests
92-
coverage report
91+
coverage run -m unittest discover -s tests

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ readme = "README.md"
1010
python = "^3.8"
1111
requests= "^2.26.0"
1212

13+
[tool.poetry.group.test.dependencies]
14+
coverage= "7.4.2"
15+
1316
[build-system]
1417
requires = ["poetry-core"]
1518
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)