Skip to content

Commit

Permalink
fix: fix run_tests.py ci
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Oct 15, 2024
1 parent 0cd8431 commit a1bbbf8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/run_tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
import unittest

from tests.test_csv import TestDAQJobStoreCSV
Expand Down Expand Up @@ -26,4 +27,6 @@ def run_tests():
if __name__ == "__main__":
test_suite = run_tests()
runner = unittest.TextTestRunner(verbosity=1)
runner.run(test_suite)
result = runner.run(test_suite)

sys.exit(not result.wasSuccessful())

0 comments on commit a1bbbf8

Please sign in to comment.