1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

Enforce ordering when running Pipeline slow tests (#8763)

update
This commit is contained in:
Dhruv Nair
2024-07-02 10:55:50 +05:30
committed by GitHub
parent 8b1e3ec93e
commit c7a84ba2f4

View File

@@ -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"