Remove API tests from the setup.py script

This commit is contained in:
Nicolargo 2015-11-25 15:32:49 +01:00
parent be97fcc414
commit 1c56b91f96

View File

@ -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)