Unverified Commit c7a84ba2 authored by Dhruv Nair's avatar Dhruv Nair Committed by GitHub
Browse files

Enforce ordering when running Pipeline slow tests (#8763)

update
parent 8b1e3ec9
......@@ -88,7 +88,7 @@ def main():
test_modules.extend(ALWAYS_TEST_PIPELINE_MODULES)
# Get unique modules
test_modules = list(set(test_modules))
test_modules = sorted(set(test_modules))
print(json.dumps(test_modules))
save_path = f"{PATH_TO_REPO}/reports"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment