Skip to content

Commit 783b13e

Browse files
committed
undoing the noxfile change with PR 3369 in main
1 parent ff2dd9b commit 783b13e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

noxfile.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -233,15 +233,12 @@ def run_dynamo_converter_tests(session):
233233
def run_dynamo_lower_tests(session):
234234
print("Running Dynamo lowering passes")
235235
session.chdir(os.path.join(TOP_DIR, "tests/py/dynamo/"))
236-
num_workers = "auto"
237236
tests = ["lowering"]
238237
for test in tests:
239238
if USE_HOST_DEPS:
240-
session.run_always(
241-
"pytest", test, "-n", num_workers, env={"PYTHONPATH": PYT_PATH}
242-
)
239+
session.run_always("pytest", test, env={"PYTHONPATH": PYT_PATH})
243240
else:
244-
session.run_always("pytest", test, "-n", num_workers)
241+
session.run_always("pytest", test)
245242

246243

247244
def run_dynamo_partitioning_tests(session):

0 commit comments

Comments
 (0)