aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/runtests/runcoverage.py
diff options
context:
space:
mode:
authorTom Christie2012-11-02 20:56:51 +0000
committerTom Christie2012-11-02 20:56:51 +0000
commit8ec54e6a9fe8e46955098ca8e7d728d8bb4f7053 (patch)
treeb05785b086d21435abcd723fa88661d9a5609acf /rest_framework/runtests/runcoverage.py
parent6eaec7a0eccabb3e1b010d07633632e8a3ecd86f (diff)
downloaddjango-rest-framework-8ec54e6a9fe8e46955098ca8e7d728d8bb4f7053.tar.bz2
Tweaks
Diffstat (limited to 'rest_framework/runtests/runcoverage.py')
-rwxr-xr-xrest_framework/runtests/runcoverage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rest_framework/runtests/runcoverage.py b/rest_framework/runtests/runcoverage.py
index ea2e3d45..0ce379eb 100755
--- a/rest_framework/runtests/runcoverage.py
+++ b/rest_framework/runtests/runcoverage.py
@@ -32,10 +32,10 @@ def main():
'Function-based test runners are deprecated. Test runners should be classes with a run_tests() method.',
DeprecationWarning
)
- failures = TestRunner(['rest_framework'])
+ failures = TestRunner(['tests'])
else:
test_runner = TestRunner()
- failures = test_runner.run_tests(['rest_framework'])
+ failures = test_runner.run_tests(['tests'])
cov.stop()
# Discover the list of all modules that we should test coverage for