variables: password: $password client_id: $client_id client_secret: $client_secret test: services: - docker:19.03.5-dind image: docker:19.03.5 stage: test script: - apk add docker-compose - docker-compose version - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker pull --quiet elgalu/selenium:3.141.59-p37 # Explicitly pull selenium image with working version - docker-compose up --abort-on-container-exit --exit-code-from test artifacts: paths: - tmp/ # Where video is stored reports: junit: logs/*.xml expire_in: 1 week when: always variables: BROWSER: chrome include: - template: Code-Quality.gitlab-ci.yml