From 3b5ee46258ee3ecc992c76b7fbdd95f414822f67 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 21 Aug 2018 00:44:55 +0200 Subject: [PATCH] enable unit-tests in CI --- common/.gitlab-ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/common/.gitlab-ci.yml b/common/.gitlab-ci.yml index 9a18bc33d..cbc2a3b61 100644 --- a/common/.gitlab-ci.yml +++ b/common/.gitlab-ci.yml @@ -45,12 +45,12 @@ build:source: # Stage: test ############################################################################## -#test:unit: -# stage: test -# dependencies: -# - build:source -# script: -# - build/tests/unit-tests --filter 'graph/*' -# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} -# tags: -# - docker +test:unit: + stage: test + dependencies: + - build:source + script: + - build/tests/unit-tests + image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} + tags: + - docker