From 29c0cab6f1f75f0900d9edacbc04298fe23b1e98 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Wed, 2 Jan 2019 21:26:46 +0100 Subject: [PATCH] gitlab-ci: split unittests to unittests and unittests-modules --- .gitlab-ci.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b820766540..09950e3c6b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,7 +26,14 @@ unittests:2.7: image: "python:2.7" stage: "test" script: - - "./tools/run_tests.sh" + - "./tools/run_tests.sh --no-modules" + +unittests-modules:2.7: + image: "python:2.7" + stage: "test" + allow_failure: true + script: + - "./tools/run_tests.sh --no-core" doc:2.7: image: "python:2.7" @@ -57,7 +64,14 @@ unittests:3: image: "python:3" stage: "test" script: - - "./tools/run_tests.sh -3" + - "./tools/run_tests.sh -3 --no-modules" + +unittests-modules:3: + image: "python:3" + stage: "test" + allow_failure: true + script: + - "./tools/run_tests.sh -3 --no-core" doc:3: image: "python:3" -- GitLab