add e2e tests to makefile

Also, add missing entries to .dockerignore.
This commit is contained in:
Dmitry Verkhoturov 2023-01-08 14:15:36 +01:00 committed by Umputun
parent 13a3fc3d1b
commit 61e2173f25
2 changed files with 5 additions and 0 deletions

View File

@ -21,8 +21,10 @@ compose-dev-backend.yml
compose-dev-frontend.yml
compose-private-backend.yml
compose-private-frontend.yml
compose-e2e-test.yml
compose-private.yml
rest-client.env.json
Makefile
# generated files
*.cov

View File

@ -49,4 +49,7 @@ rundev:
docker-compose -f compose-private.yml build
docker-compose -f compose-private.yml up
e2e:
docker compose -f compose-e2e-test.yml up --build --quiet-pull --exit-code-from tests
.PHONY: bin backend