Skip to content

Commit 367de74

Browse files
authored
[PLT-0] reenable tests (#1519)
1 parent c9833dc commit 367de74

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tests/integration/test_foundry.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ def test_get_app_with_invalid_id(foundry_client):
9292
foundry_client._get_app("invalid-id")
9393

9494

95-
@pytest.mark.skip(reason="broken")
9695
def test_run_foundry_app_with_data_row_id(foundry_client, data_row, app,
9796
random_str):
9897
data_rows = lb.DataRowIds([data_row.uid])
@@ -104,7 +103,6 @@ def test_run_foundry_app_with_data_row_id(foundry_client, data_row, app,
104103
assert task.status == 'COMPLETE'
105104

106105

107-
@pytest.mark.skip(reason="broken")
108106
def test_run_foundry_app_with_global_key(foundry_client, data_row, app,
109107
random_str):
110108
data_rows = lb.GlobalKeys([data_row.global_key])
@@ -116,7 +114,6 @@ def test_run_foundry_app_with_global_key(foundry_client, data_row, app,
116114
assert task.status == 'COMPLETE'
117115

118116

119-
@pytest.mark.skip(reason="broken")
120117
def test_run_foundry_app_returns_model_run_id(foundry_client, data_row, app,
121118
random_str):
122119
data_rows = lb.GlobalKeys([data_row.global_key])
@@ -129,7 +126,6 @@ def test_run_foundry_app_returns_model_run_id(foundry_client, data_row, app,
129126
assert model_run.uid == model_run_id
130127

131128

132-
@pytest.mark.skip(reason="broken")
133129
def test_run_foundry_with_invalid_data_row_id(foundry_client, app, random_str):
134130
invalid_datarow_id = 'invalid-global-key'
135131
data_rows = lb.GlobalKeys([invalid_datarow_id])
@@ -141,7 +137,6 @@ def test_run_foundry_with_invalid_data_row_id(foundry_client, app, random_str):
141137
assert invalid_datarow_id in exception.value
142138

143139

144-
@pytest.mark.skip(reason="broken")
145140
def test_run_foundry_with_invalid_global_key(foundry_client, app, random_str):
146141
invalid_global_key = 'invalid-global-key'
147142
data_rows = lb.GlobalKeys([invalid_global_key])
@@ -150,4 +145,4 @@ def test_run_foundry_with_invalid_global_key(foundry_client, app, random_str):
150145
model_run_name=f"test-app-with-invalid-global-key-{random_str}",
151146
data_rows=data_rows,
152147
app_id=app.id)
153-
assert invalid_global_key in exception.value
148+
assert invalid_global_key in exception.value

0 commit comments

Comments
 (0)