Skip to content

Commit dc09e7a

Browse files
committed
upsample tests and cross_compile_for_windows test disable
1 parent e3942db commit dc09e7a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

noxfile.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,13 @@ def run_dynamo_converter_tests(session):
223223
tests = [
224224
"conversion",
225225
]
226+
# specifically for blackwell
227+
skip_tests = "-k test_upsample_aten and not 3"
226228
for test in tests:
227229
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})
229231
else:
230-
session.run_always("pytest", test)
232+
session.run_always("pytest", test, skip_tests)
231233

232234

233235
def run_dynamo_lower_tests(session):
@@ -258,7 +260,7 @@ def run_dynamo_runtime_tests(session):
258260
tests = [
259261
"runtime",
260262
]
261-
skip_tests = "-k not hw_compat"
263+
skip_tests = "-k not hw_compat and not test_003_cross_compile_for_windows"
262264
for test in tests:
263265
if USE_HOST_DEPS:
264266
session.run_always("pytest", test, skip_tests, env={"PYTHONPATH": PYT_PATH})

0 commit comments

Comments
 (0)