diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b820766540d8f930f727513b5c623c1a3d7c1f10..09950e3c6ba79bbc014d612e13cb43894b926d4c 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"