diff options
-rw-r--r-- | setup.cfg | 5 | ||||
-rw-r--r-- | setup.py | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b7593ce --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[aliases] +check = pytest +unit_check = check --addopts=tests/unit +integration_check = check --addopts=tests/integration +performance_check = check --addopts=tests/performance @@ -34,4 +34,9 @@ setup(author='Bonface M. K.', 'tests' ], url='https://github.com/genenetwork/genenetwork3', - version='0.1') + version='0.1', + # ---- TESTING ---- # + setup_requires=['pytest-runner'], + tests_require=["pytest", "hypothesis"] + # ---- END: TESTING ---- # + ) |