Skip to content
Snippets Groups Projects
Commit 0235af4a authored by robinwilliam.hundt's avatar robinwilliam.hundt
Browse files

Refactor broke CI. Changed relevant paths.

parent e8c3d925
Branches
Tags
1 merge request!15Refactor
Pipeline #
......@@ -12,8 +12,8 @@ build:
stage: build
script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker build -t $IMAGE_TAG .
- docker push $IMAGE_TAG
- docker build -t backend/$IMAGE_TAG .
- docker push backend/$IMAGE_TAG
.test_template: &test_definition
......@@ -25,13 +25,13 @@ test_coverage:
services:
- postgres:9.5
script:
- coverage run manage.py test --noinput
- coverage run backend/manage.py test --noinput
- coverage report --skip-covered
test_pylint:
<<: *test_definition
script:
- pylint core || exit 0
- pylint backend/core || exit 0
.staging_template: &staging_definition
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment