summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsetup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 8da1bfb..6d4e320 100755
--- a/setup.py
+++ b/setup.py
@@ -23,11 +23,9 @@ class PyTest(Command):
23 pass 23 pass
24 24
25 def run(self): 25 def run(self):
26 import subprocess
27 import sys
28 os.chdir('test') 26 os.chdir('test')
29 errno = subprocess.call([sys.executable, 'test.py', '--local']) 27 import test
30 raise SystemExit(errno) 28 test.test.run_all_tests()
31 29
32setup( 30setup(
33 name='MAT', 31 name='MAT',