@@ -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" )
9695def 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" )
108106def 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" )
120117def 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" )
133129def 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" )
145140def 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