diff --git a/setup.py b/setup.py index 8e9a6f69..f6c65286 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ class tests(Command): def run(self): import subprocess import sys - for t in glob.glob('unitest.py'): + for t in glob.glob('unitest*.py'): ret = subprocess.call([sys.executable, t]) != 0 if ret != 0: raise SystemExit(ret) @@ -59,7 +59,7 @@ setup( keywords="cli curses monitoring system", install_requires=get_requires(), extras_require={ - 'WEB': ['bottle'], + 'WEB': ['bottle', 'requests'], 'SENSORS': ['py3sensors'], 'BATINFO': ['batinfo'], 'SNMP': ['pysnmp'], diff --git a/tox.ini b/tox.ini index 638e17f9..f54dd8e3 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,8 @@ # tox [tox] -envlist = py27, py34 +#envlist = py27, py34 +envlist = py27 [testenv] deps =