Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.

Commit

Permalink
Fix runtests script
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel Velasquez committed May 28, 2014
1 parent 12a8774 commit e08482b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
def runtests():
if hasattr(django, 'setup'):
django.setup()
apps = sys.argv[1:] or ['klingon', ]
TestRunner = get_runner(settings)
test_runner = TestRunner(verbosity=1, interactive=True, failfast=False)
apps = ['klingon', ]
failures = test_runner.run_tests(apps)
sys.exit(failures)

Expand Down

0 comments on commit e08482b

Please sign in to comment.