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 3b490fe commit dcce962Copy full SHA for dcce962
Makefile
@@ -39,7 +39,7 @@ check: install
39
40
test: install
41
@pip install --quiet --requirement=requirements-tests.txt
42
- @nosetests --with-coverage --cover-html
+ @py.test
43
@coverage report --fail-under=90
44
45
tox: install
requirements-tests.txt
@@ -9,6 +9,8 @@ zope.interface>=4.4.0
9
pyasn1>=0.2.3
10
pycrypto>=2.6.1
11
pyserial>=3.4
12
+pytest-cov>=2.5.1
13
+pytest>=3.5.0
14
redis>=2.10.5
15
sqlalchemy>=1.1.15
16
#wsgiref>=0.1.2
setup.cfg
@@ -26,4 +26,8 @@ all_files = 1
26
upload-dir = build/sphinx/html
27
28
[bdist_wheel]
29
-universal=1
+universal=1
30
+
31
+[tool:pytest]
32
+addopts = --cov=pymodbus/
33
+testpaths = test
0 commit comments