We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b748b commit 5dff3ebCopy full SHA for 5dff3eb
2 files changed
.github/workflows/main.yml
@@ -87,7 +87,15 @@ jobs:
87
- name: Setup and Run ppi_scaffolds tests
88
run: |
89
tar -xvf examples/ppi_scaffolds_subset.tar.gz -C examples
90
- cd tests && uv run python test_diffusion.py
+ total_chunks=$(nproc)
91
+ for chunk_index in $(seq 1 $total_chunks); do
92
+ echo "Running chunk $chunk_index of $total_chunks"
93
+ uv run python tests/test_diffusion.py --total-chunks $total_chunks --chunk-index $chunk_index &
94
+ done
95
+
96
+ wait
97
+ echo "All chunks completed."
98
+ #cd tests && uv run python test_diffusion.py
99
100
101
# - name: Test with pytest
0 commit comments