diff options
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py index 17cd4594c..459f7c728 100644 --- a/pavement.py +++ b/pavement.py @@ -153,8 +153,10 @@ def generate_locale(): @task def tests(): - """ Run nosetests """ + """ Run complete test suite """ + call(["tests/run_pyload.sh"]) call(["tests/nosetests.sh"]) + call(["tests/quit_pyload.sh"]) @task |