Skip to content

Commit 9732efa

Browse files
committed
Fix the testrunner to run tests
1 parent 36a2d9f commit 9732efa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testrunner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def runtests():
2727
from django.test.utils import get_runner
2828
TestRunner = get_runner(settings)
2929
test_runner = TestRunner(verbosity=1, failfast=False)
30-
failures = test_runner.run_tests(['experiments', ])
30+
failures = test_runner.run_tests(['experiments.tests', ])
3131
sys.exit(bool(failures))
3232

3333

0 commit comments

Comments
 (0)