Skip to content

Commit 17d83ba

Browse files
committed
Test: Improve test suite log messages for better clarity inside run-tests.py file
1 parent f05c796 commit 17d83ba

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

run-tests.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66

77
def main():
88
try:
9-
print("→ Starting unit test cases...")
10-
9+
print("→ Starting Solr containers...")
1110
subprocess.run(["./solr-docker-test-env.sh", "setup"], check=True)
11+
12+
print("→ Running unit test suite...")
1213
unittest.main(module="tests", verbosity=1)
1314

1415
finally:
15-
print("→ Unit test cases completed.")
16+
print("→ Unit test suite completed.")
1617
subprocess.run(["./solr-docker-test-env.sh", "destroy"], check=True)
1718

1819

0 commit comments

Comments
 (0)