From 23afdc0c1fedcd831a09e0f6fcc739c810ea6722 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 23 Jan 2022 15:16:06 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ccdc7b1..de6eee8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -39,8 +39,8 @@ build-job: # This job runs in the build stage, which runs first. unit-test-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - - echo "Running unit tests... This will take about 60 seconds." - - sleep 60 + - echo "Running unit tests..." + - ctest - echo "Code coverage is 90%" lint-test-job: # This job also runs in the test stage.