Skip to content

Commit

Permalink
TERCC handling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 committed Nov 29, 2024
1 parent 8319a21 commit c48d84c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ def test_suite(self) -> list[Suite]:
testrun = TestRun(Kubernetes()).get(testrun_id)
self.__test_suite = testrun.spec.suites
else:
test_suite = self._eiffel_test_suite(os.getenv("TERCC", "{}"))
tercc = json.loads(os.getenv("TERCC", "{}"))
test_suite = self._eiffel_test_suite(tercc)
test_suite = [Suite.from_tercc(suite, {}) for suite in test_suite]
self.__test_suite = test_suite
return self.__test_suite or []
Expand Down

0 comments on commit c48d84c

Please sign in to comment.