Skip to content

Commit

Permalink
Use Docker Compose version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Aug 8, 2024
1 parent 8bb3cac commit 48fc912
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ build-no-cache: ## Build the Docker image (no cache)

.PHONY: acceptance
acceptance: build ## Run the acceptance tests
(cd acceptance_tests/ && docker-compose down)
(cd acceptance_tests/ && docker-compose build)
(cd acceptance_tests/ && docker-compose up -d)
(cd acceptance_tests/ && docker-compose exec -T acceptance py.test -vv --color=yes --junitxml /tmp/junitxml/results.xml)
(cd acceptance_tests/ && docker-compose down)
(cd acceptance_tests/ && docker compose down)
(cd acceptance_tests/ && docker compose build)
(cd acceptance_tests/ && docker compose up -d)
(cd acceptance_tests/ && docker compose exec -T acceptance py.test -vv --color=yes --junitxml /tmp/junitxml/results.xml)
(cd acceptance_tests/ && docker compose down)

.PHONY: run
run: build
(cd acceptance_tests; docker-compose up)
(cd acceptance_tests; docker compose up -d)

0 comments on commit 48fc912

Please sign in to comment.