From 86a40b52055120725b0d5357138c4b655e334e35 Mon Sep 17 00:00:00 2001 From: Florent Fourcot Date: Wed, 30 Aug 2017 11:44:22 +0200 Subject: [PATCH] ci: always run python3 tests --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9e828fd150..38e0249d2b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -39,12 +39,14 @@ doc:2.7: build:3: image: "python:3" stage: "build3" + when: always script: - "./tools/local_install.sh ~/bin" lint:3: image: "python:3" stage: "test3" + when: always script: - "./tools/pyflakes.sh" - "./tools/weboob_lint.sh" @@ -52,6 +54,7 @@ lint:3: unittests:3: image: "python:3" stage: "test3" + when: always script: - "./tools/run_tests.sh -3" -- GitLab