Skip to content

Commit 1078d86

Browse files
committed
Add debug parameter to failing unit tests
1 parent d182821 commit 1078d86

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

test/unit_tests/inference/test_hp_endpoint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ def test_create(self, mock_create_api, mock_validate_instance_type):
104104
kind=INFERENCE_ENDPOINT_CONFIG_KIND,
105105
namespace="test-ns",
106106
spec=unittest.mock.ANY,
107+
debug=False,
107108
)
108109
self.assertEqual(self.endpoint.metadata.name, "test-name")
109110

test/unit_tests/inference/test_hp_jumpstart_endpoint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def test_create(self, mock_create_api, mock_validate_instance_type):
4444
kind=JUMPSTART_MODEL_KIND,
4545
namespace="test-ns",
4646
spec=unittest.mock.ANY,
47+
debug=False,
4748
)
4849
self.assertEqual(self.endpoint.metadata.name, "test-name")
4950

0 commit comments

Comments
 (0)