changeset 28:b3a950065844

toxify
author Jeff Hammel <k0scist@gmail.com>
date Sun, 10 May 2020 18:39:21 -0700
parents a983d9bb7003
children d742aff49859
files setup.py tox.ini
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- /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