We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e64ffd commit 26c15beCopy full SHA for 26c15be
Makefile
@@ -19,7 +19,7 @@ clean:
19
-rm -rf bin lib share pyvenv.cfg
20
21
coverage:
22
- python3 -m coverage run --source=cstruct setup.py test && python3 -m coverage report -m
+ python3 -m coverage run setup.py test && python3 -m coverage report -m
23
24
.PHONY: docs
25
docs:
pyproject.toml
@@ -1,2 +1,8 @@
1
[tool.black]
2
line-length = 132
3
+
4
+[tool.coverage.run]
5
+source = ["cstruct"]
6
7
+[tool.coverage.report]
8
+exclude_lines = [ "# pragma: no cover", "if TYPE_CHECKING:" ]
requirements-dev.txt
@@ -1,4 +1,4 @@
-coverage
+coverage[toml]
flake8
mypy
tox
0 commit comments