We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3324a12 + d05d2c5 commit 9f97cbaCopy full SHA for 9f97cba
1 file changed
setup.py
@@ -1,6 +1,7 @@
1
from setuptools import setup, find_packages
2
import os
3
import sys
4
+import pytest
5
6
def get_version():
7
basedir = os.path.dirname(__file__)
@@ -42,6 +43,7 @@ def get_version():
42
43
},
44
setup_requires=['pytest-runner'],
45
tests_require=['pytest', 'pytest-cov'],
46
+ cmdclass = {'test': pytest},
47
include_package_data=True,
48
zip_safe=False,
49
)
0 commit comments