From 9473d17dd6703bbc570b5104672949758835a41b Mon Sep 17 00:00:00 2001 From: markotibold Date: Wed, 27 Apr 2011 13:40:46 +0200 Subject: [PATCH] Omitting all the superfluous tests. Later on we might want a nicer way to specify which apps to test, because they are now hardcoded in runtests.py. (Listdir doesn't do the trick, tried that already :-) ) --- examples/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/runtests.py b/examples/runtests.py index fd79bc644..b420968fd 100644 --- a/examples/runtests.py +++ b/examples/runtests.py @@ -19,7 +19,7 @@ def main(): failures = TestRunner(None) else: test_runner = TestRunner() - failures = test_runner.run_tests(None) + failures = test_runner.run_tests(['blogpost', 'pygments_api']) sys.exit(failures)