Skip to content

Commit b427582

Browse files
committed
another actions fix again again again
1 parent 411c751 commit b427582

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/python-ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,23 +70,24 @@ jobs:
7070
7171
- name: 6. Download Data and Run Delphi Pytest
7272
run: |
73-
# Now we EXEC into the running 'delphi' container
73+
# Use 'docker compose exec' to run commands INSIDE the
74+
# already-running 'delphi' container.
7475
docker compose \
7576
-f docker-compose.test.yml \
7677
--env-file .env \
7778
exec -T \
7879
delphi \
7980
bash -c " \
8081
echo '--- Starting Data Download ---'; \
81-
python /app/delphi/tests/download_real_data.py \
82+
python /app/tests/download_real_data.py \
8283
--base-url http://nginx-proxy \
8384
r4tykwac8thvzv35jrn53 r6vbnhffkxbd7ifmfbdrd; \
8485
echo '--- Data Download Finished. Listing data: ---'; \
85-
ls -lR /app/delphi/real_data; \
86+
ls -lR /app/real_data; \
8687
echo '--- Installing Pytest ---'; \
8788
pip install pytest; \
8889
echo '--- Running Pytest ---'; \
89-
pytest /app/delphi/tests \
90+
pytest /app/tests \
9091
"
9192
9293
- name: 7. Show service logs on failure

0 commit comments

Comments
 (0)