From eaf8fbad3615185dc6d40c6bff2be4cd88973823 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 21 Oct 2018 12:57:18 +0100 Subject: [PATCH] ci: fix execution of unit tests --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ab64b3ff2..dfb20ccc5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -99,8 +99,8 @@ test:unit: - build:source script: - mkdir -p build && cd build - - cmake .. - - make run-unit-tests + - cmake .. && make unit-tests + - tests/unit/unit-tests image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} tags: - docker