File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -223,11 +223,13 @@ def run_dynamo_converter_tests(session):
223
223
tests = [
224
224
"conversion" ,
225
225
]
226
+ # specifically for blackwell
227
+ skip_tests = "-k test_upsample_aten and not 3"
226
228
for test in tests :
227
229
if USE_HOST_DEPS :
228
- session .run_always ("pytest" , test , env = {"PYTHONPATH" : PYT_PATH })
230
+ session .run_always ("pytest" , test , skip_tests , env = {"PYTHONPATH" : PYT_PATH })
229
231
else :
230
- session .run_always ("pytest" , test )
232
+ session .run_always ("pytest" , test , skip_tests )
231
233
232
234
233
235
def run_dynamo_lower_tests (session ):
@@ -258,7 +260,7 @@ def run_dynamo_runtime_tests(session):
258
260
tests = [
259
261
"runtime" ,
260
262
]
261
- skip_tests = "-k not hw_compat"
263
+ skip_tests = "-k not hw_compat and not test_003_cross_compile_for_windows "
262
264
for test in tests :
263
265
if USE_HOST_DEPS :
264
266
session .run_always ("pytest" , test , skip_tests , env = {"PYTHONPATH" : PYT_PATH })
You can’t perform that action at this time.
0 commit comments