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.
2 parents d899489 + 3fc7f85 commit a0869caCopy full SHA for a0869ca
.gitignore
@@ -11,3 +11,5 @@ embeddings/
11
models/
12
.tox/
13
*__pycache__/
14
+.coverage
15
+
Makefile
@@ -144,6 +144,6 @@ $(test_artefacts):
144
145
.PHONY: test
146
test: $(test_artefacts) test_embedding
147
- $(VIRTUALENV)/bin/pytest --disable-warnings --tb=line
+ $(VIRTUALENV)/bin/pytest --disable-warnings --tb=line --cov=deep_reference_parser
148
149
all: virtualenv model embedding test
requirements_test.txt
@@ -1,2 +1,4 @@
1
pytest
2
tox
3
+codecov
4
+pytest-cov
setup.py
@@ -50,6 +50,7 @@
50
"matplotlib",
51
],
52
tests_require=[
53
- "pytest"
+ "pytest",
54
+ "pytest-cov"
55
56
)
0 commit comments