We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a439f48 commit 9266298Copy full SHA for 9266298
runtests.py
@@ -14,12 +14,12 @@ def main():
14
TestRunner = get_runner(settings)
15
test_runner = TestRunner(failfast=True)
16
# kept here to run a single test
17
- failures = test_runner.run_tests(
18
- [
19
- "tests.test_index.IndexTestCase"
20
- ]
21
- )
22
- # failures = test_runner.run_tests(["tests"])
+ # failures = test_runner.run_tests(
+ # [
+ # "tests.test_index.IndexTestCase"
+ # ]
+ # )
+ failures = test_runner.run_tests(["tests"])
23
sys.exit(bool(failures))
24
25
0 commit comments