# HG changeset patch # User Jeff Hammel # Date 1504283375 25200 # Node ID 064e936c72576329547fd854f9c9cc26e8e17892 # Parent c907c8a103b4ea45caf73aaa52fdaf356f53c159 pytest integration diff -r c907c8a103b4 -r 064e936c7257 setup.cfg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.cfg Fri Sep 01 09:29:35 2017 -0700 @@ -0,0 +1,2 @@ +[aliases] +test=pytest \ No newline at end of file diff -r c907c8a103b4 -r 064e936c7257 setup.py --- a/setup.py Thu Aug 31 10:06:20 2017 -0700 +++ b/setup.py Fri Sep 01 09:29:35 2017 -0700 @@ -5,7 +5,8 @@ import os version = "0.0" -dependencies = ['numpy'] +dependencies = ['numerics', + 'numpy'] # allow use of setuptools/distribute or distutils kw = {} @@ -39,8 +40,8 @@ license='', packages=['tvii'], include_package_data=True, - tests_require=['tox'], + setup_requires=['pytest-runner'], + tests_require=['tox', 'pytest'], zip_safe=False, **kw ) -