File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments