aboutsummaryrefslogtreecommitdiffstats
path: root/examples/runtests.py
diff options
context:
space:
mode:
authormarkotibold2011-04-27 13:40:46 +0200
committermarkotibold2011-04-27 13:40:46 +0200
commit9473d17dd6703bbc570b5104672949758835a41b (patch)
tree653805e85f75904dfb603bec2db50ad059de4b94 /examples/runtests.py
parentb508ca38d44f458e3eabaa4ffd3500d80a71eb9e (diff)
downloaddjango-rest-framework-9473d17dd6703bbc570b5104672949758835a41b.tar.bz2
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 :-) )
Diffstat (limited to 'examples/runtests.py')
-rw-r--r--examples/runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/runtests.py b/examples/runtests.py
index fd79bc64..b420968f 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)