Skip to content

Commit a629d43

Browse files
committed
Add step to cd into tests directory in main.yml
1 parent 6d0036b commit a629d43

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,11 @@ jobs:
8787
- name: Setup and Run ppi_scaffolds tests
8888
run: |
8989
tar -xvf examples/ppi_scaffolds_subset.tar.gz -C examples
90-
total_chunks=$(nproc)
90+
total_chunks=$(nproc)
91+
cd tests
9192
for chunk_index in $(seq 1 $total_chunks); do
9293
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+
uv run python test_diffusion.py --total_chunks $total_chunks --chunk_index $chunk_index &
9495
done
9596
9697
wait

0 commit comments

Comments
 (0)