Commit 12bc47af authored by rusty1s's avatar rusty1s
Browse files

code coverage

parent 463dd03b
...@@ -5,6 +5,7 @@ dist/ ...@@ -5,6 +5,7 @@ dist/
.cache/ .cache/
.eggs/ .eggs/
.ipynb_checkpoints/ .ipynb_checkpoints/
.coverage
*.egg-info/ *.egg-info/
*.so *.so
*.aux *.aux
......
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
test=pytest test=pytest
[tool:pytest] [tool:pytest]
addopts = --capture=no addopts = --capture=no --cov
...@@ -5,7 +5,7 @@ import build # noqa ...@@ -5,7 +5,7 @@ import build # noqa
install_requires = ['cffi'] install_requires = ['cffi']
setup_requires = ['pytest-runner', 'cffi'] setup_requires = ['pytest-runner', 'cffi']
tests_require = ['pytest'] tests_require = ['pytest', 'pytest-cov']
docs_require = ['Sphinx', 'sphinx_rtd_theme'] docs_require = ['Sphinx', 'sphinx_rtd_theme']
setup( setup(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment