Skip to content
Snippets Groups Projects

updated logic of the test-job

Merged Dobromir Palushev requested to merge just-a-test into staging
1 file
+ 23
39
Compare changes
  • Side-by-side
  • Inline
+ 5
3
@@ -36,6 +36,9 @@ run-tests:
services:
- name: docker:${DOCKER_VERSION}-dind
alias: localhost
variables:
MONGODB_URL_TEST: mongodb://localhost:27017/todo-app
JWT_SECRET_TEST: my-very-secret-jwt
script:
- docker run -p 27017:27017
--detach
@@ -46,9 +49,8 @@ run-tests:
- docker build
--tag "${CONTAINER_TAG}-test"
--network=host
--build-arg MONGODB_URL_TEST=mongodb://localhost:27017/todo-app
--build-arg JWT_SECRET_TEST=my-very-secret-jwt
--add-host=host.docker.internal:host-gateway
--build-arg MONGODB_URL_TEST=$MONGODB_URL_TEST
--build-arg JWT_SECRET_TEST=$JWT_SECRET_TEST
--file "./app/Dockerfile.test"
"./app"
after_script:
Loading