Skip to content

Commit

Permalink
Bug fix from PR 5092
Browse files Browse the repository at this point in the history
Signed-off-by: Prudhvi Godithi <[email protected]>
  • Loading branch information
prudhvigodithi committed Oct 14, 2024
1 parent fded093 commit 2f448bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def custom_node_endpoint_encoder(node_endpoint: NodeEndpoint) -> dict:

@property
def additional_test_report_dirs(self) -> list[str]:
return ["integrationTest", "integTestRemote"]
return ["integTest", "integrationTest", "integTestRemote"]

@property
def test_artifact_files(self) -> dict:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,4 +296,4 @@ def test_test_report_dirs(self, *mocks: Any) -> None:
self.work_dir,
MagicMock()
)
self.assertEqual(integ_test_suite.additional_test_report_dirs, ["integrationTest", "integTestRemote"])
self.assertEqual(integ_test_suite.additional_test_report_dirs, ["integTest", "integrationTest", "integTestRemote"])

0 comments on commit 2f448bc

Please sign in to comment.