You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: run web with docker compose
run: docker compose up --build -d web --wait
- name: init the database
run: docker compose exec -it -w /usr/src/app/src/ web alembic upgrade head
- name: run the rest of the code
run: docker compose up -d
- name: run e2e tests
run: docker run --net mquery_default -v $(readlink -f ./samples):/mnt/samples mquery_tests
specifically, this line is probably unnecessary, and we can start everything at once:
-name: init the database
run: docker compose exec -it -w /usr/src/app/src/ web alembic upgrade head
But before removing it we should make sure there are no race conditions and e2e tests still work.
It's possible that just this is enough for setup:
docker compose up --build -d --wait
(and then run mquery_tests)
The text was updated successfully, but these errors were encountered:
Right now this setup is needlessly complicated:
specifically, this line is probably unnecessary, and we can start everything at once:
But before removing it we should make sure there are no race conditions and e2e tests still work.
It's possible that just this is enough for setup:
(and then run mquery_tests)
The text was updated successfully, but these errors were encountered: