Skip to content

Commit

Permalink
Migrate docker-compose to docker compose (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpello authored Oct 19, 2024
1 parent 76d1355 commit a092144
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ test:
@for SCENARIO in $(shell ls scenarios/) ; do \
( \
cd scenarios/$$SCENARIO && \
docker-compose up -d --build && \
docker-compose exec -T client yarn test ; \
STATUS=$$? ; docker-compose down -v && exit $$STATUS \
docker compose up -d --build && \
docker compose exec -T client yarn test ; \
STATUS=$$? ; docker compose down -v && exit $$STATUS \
) || exit 1 ; \
done && echo 'All tests OK'

0 comments on commit a092144

Please sign in to comment.