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 32f97d5 commit d2ec84dCopy full SHA for d2ec84d
.github/workflows/build.yml
@@ -37,3 +37,7 @@ jobs:
37
poetry install
38
- name: Run tests
39
run: python -m pytest tests
40
+ - name: Report coverage
41
+ env:
42
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
43
+ run: python -m coveralls
pyproject.toml
@@ -47,6 +47,10 @@ coverage = [
47
{ version = ">=6.3.0", python = ">=3.7" },
48
{ version = ">=4.5.4", python = "<3.7" },
49
]
50
+coveralls = [
51
+ { version = ">=3.3.0", python = ">=3.5" },
52
+ { version = "<2", python = "<3.5" },
53
+]
54
pytest-cov = "~2.8"
55
flake8 = ">=3.6.0"
56
mock = "^3.0.5"
0 commit comments