Skip to content

Commit

Permalink
Enforce ordering when running Pipeline slow tests (huggingface#8763)
Browse files Browse the repository at this point in the history
update
  • Loading branch information
DN6 authored Jul 2, 2024
1 parent 8b1e3ec commit c7a84ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/fetch_torch_cuda_pipeline_test_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c7a84ba

Please sign in to comment.