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 f05c796 commit 17d83baCopy full SHA for 17d83ba
run-tests.py
@@ -6,13 +6,14 @@
6
7
def main():
8
try:
9
- print("→ Starting unit test cases...")
10
-
+ print("→ Starting Solr containers...")
11
subprocess.run(["./solr-docker-test-env.sh", "setup"], check=True)
+
12
+ print("→ Running unit test suite...")
13
unittest.main(module="tests", verbosity=1)
14
15
finally:
- print("→ Unit test cases completed.")
16
+ print("→ Unit test suite completed.")
17
subprocess.run(["./solr-docker-test-env.sh", "destroy"], check=True)
18
19
0 commit comments