Skip to content

Commit 9266298

Browse files
committed
fix: test runner
1 parent a439f48 commit 9266298

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

runtests.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ def main():
1414
TestRunner = get_runner(settings)
1515
test_runner = TestRunner(failfast=True)
1616
# 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"])
17+
# failures = test_runner.run_tests(
18+
# [
19+
# "tests.test_index.IndexTestCase"
20+
# ]
21+
# )
22+
failures = test_runner.run_tests(["tests"])
2323
sys.exit(bool(failures))
2424

2525

0 commit comments

Comments
 (0)