# HG changeset patch # User Jeff Hammel # Date 1589161161 25200 # Node ID b3a95006584482c226c4c40942b3efe0a0575615 # Parent a983d9bb70031789b8830dabfb6bcbe4e5b16c32 toxify diff -r a983d9bb7003 -r b3a950065844 setup.py --- a/setup.py Wed Apr 12 13:36:34 2017 -0700 +++ b/setup.py Sun May 10 18:39:21 2020 -0700 @@ -26,6 +26,7 @@ include_package_data=True, zip_safe=False, install_requires=dependencies, + tests_require=['tox'], entry_points=""" [console_scripts] wsgintegrate = wsgintegrate.main:main diff -r a983d9bb7003 -r b3a950065844 tox.ini --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tox.ini Sun May 10 18:39:21 2020 -0700 @@ -0,0 +1,7 @@ +# https://tox.readthedocs.io/en/latest/ + +[tox] +envlist=py27 + +[testenv] +commands=python setup.py test \ No newline at end of file