We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d0036b commit a629d43Copy full SHA for a629d43
.github/workflows/main.yml
@@ -87,10 +87,11 @@ jobs:
87
- name: Setup and Run ppi_scaffolds tests
88
run: |
89
tar -xvf examples/ppi_scaffolds_subset.tar.gz -C examples
90
- total_chunks=$(nproc)
+ total_chunks=$(nproc)
91
+ cd tests
92
for chunk_index in $(seq 1 $total_chunks); do
93
echo "Running chunk $chunk_index of $total_chunks"
- uv run python tests/test_diffusion.py --total_chunks $total_chunks --chunk_index $chunk_index &
94
+ uv run python test_diffusion.py --total_chunks $total_chunks --chunk_index $chunk_index &
95
done
96
97
wait
0 commit comments