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

This commit is contained in:
markotibold 2011-04-27 13:40:46 +02:00
parent b508ca38d4
commit 9473d17dd6

View File

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