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 0eddab8 commit 3677a2aCopy full SHA for 3677a2a
2 files changed
.github/workflows/python-app.yml
@@ -43,5 +43,5 @@ jobs:
43
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
44
- name: Test with pytest
45
run: |
46
- pytest
+ pytest -cov
47
codecov --token=${{secrets.CODECOV_TOKEN}}
pyproject.toml
@@ -26,12 +26,10 @@ Homepage = "https://github.com/tjhowse/modbus4mqtt"
26
27
[project.optional-dependencies]
28
test = [
29
- "nose2>=0.9.2",
30
- "nose2[coverage_plugin]>=0.6.5",
31
"flake8",
32
"pytest",
33
- "nose2",
34
"codecov",
+ "pytest-cov>=7.0.0",
35
]
36
37
[project.scripts]
0 commit comments