We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f129af + 8c46fb5 commit 1081149Copy full SHA for 1081149
2 files changed
.github/workflows/ci.yml
@@ -35,4 +35,4 @@ jobs:
35
run: mypy runcycles
36
37
- name: Run tests with coverage
38
- run: pytest
+ run: pytest --cov
pyproject.toml
@@ -38,4 +38,9 @@ strict = true
39
[tool.pytest.ini_options]
40
asyncio_mode = "auto"
41
-addopts = "--cov=runcycles --cov-fail-under=95"
+
42
+[tool.coverage.run]
43
+source = ["runcycles"]
44
45
+[tool.coverage.report]
46
+fail_under = 95
0 commit comments