Skip to content

Commit 6e52de9

Browse files
committed
Re-enable tests
Signed-off-by: Federico Busetti <[email protected]>
1 parent 23327a7 commit 6e52de9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.gitlab_ci/base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ variables:
77

88
stages:
99
- build
10-
# - test
10+
- test
1111
- deploy
1212

1313
include:
1414
- local: /.gitlab_ci/_templates.yml
1515
- local: /.gitlab_ci/build.yml
16-
# - local: /.gitlab_ci/test.yml
16+
- local: /.gitlab_ci/test.yml
1717
- local: /.gitlab_ci/deploy.yml

.gitlab_ci/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
typing:
33
stage: test
44
variables:
5-
DOCKER_IMAGE_TAG_PREFIX: "test-"
5+
DOCKER_IMAGE_NAME: $CI_PROJECT_NAME-test
66
rules:
77
# We run the pipeline only on merge requests or the `main` branch
88
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
@@ -13,7 +13,7 @@ typing:
1313
lint:
1414
stage: test
1515
variables:
16-
DOCKER_IMAGE_TAG_PREFIX: "test-"
16+
DOCKER_IMAGE_NAME: $CI_PROJECT_NAME-test
1717
rules:
1818
# We run the pipeline only on merge requests or the `main` branch
1919
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
@@ -24,7 +24,7 @@ lint:
2424
format:
2525
stage: test
2626
variables:
27-
DOCKER_IMAGE_TAG_PREFIX: "test-"
27+
DOCKER_IMAGE_NAME: $CI_PROJECT_NAME-test
2828
rules:
2929
# We run the pipeline only on merge requests or the `main` branch
3030
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
@@ -35,7 +35,7 @@ format:
3535
tests:
3636
stage: test
3737
variables:
38-
DOCKER_IMAGE_TAG_PREFIX: "test-"
38+
DOCKER_IMAGE_NAME: $CI_PROJECT_NAME-test
3939
rules:
4040
# We run the pipeline only on merge requests or the `main` branch
4141
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH

0 commit comments

Comments
 (0)