Skip to content

Commit 9a4e8a8

Browse files
committed
skip test_dagrun_modelrun_scriptrun_resnet since its hanging CI
1 parent f055248 commit 9a4e8a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/flow/tests_dag.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@ def test_dagro_common_errors(env):
227227
def test_dagrun_ro_modelrun_scriptrun_resnet(env):
228228
if (not TEST_TF or not TEST_PT):
229229
return
230+
if(VALGRIND):
231+
env.debugPrint("skipping {} since it's hanging CI".format(sys._getframe().f_code.co_name), force=True)
232+
env.skip()
230233

231234
con = env.getConnection()
232235
model_name = 'imagenet_model{{1}}'
@@ -275,6 +278,9 @@ def test_dagrun_ro_modelrun_scriptrun_resnet(env):
275278
def test_dagrun_modelrun_scriptrun_resnet(env):
276279
if (not TEST_TF or not TEST_PT):
277280
return
281+
if(VALGRIND):
282+
env.debugPrint("skipping {} since it's hanging CI".format(sys._getframe().f_code.co_name), force=True)
283+
env.skip()
278284
con = env.getConnection()
279285
model_name = 'imagenet_model:{{1}}'
280286
script_name = 'imagenet_script:{{1}}'

0 commit comments

Comments
 (0)