diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38e0249d2bdaa4165d3fc24de88a846feadbb92a..c2517f753f933a97dcc3096b9ac4a8e7d825cbb2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,11 +17,17 @@ build:2.7: script: - "./tools/local_install.sh ~/bin" -lint:2.7: +pyflakes:2.7: image: "python:2.7" stage: "test27" script: - "./tools/pyflakes.sh" + +lint:2.7: + image: "python:2.7" + stage: "test27" + allow_failure: true + script: - "./tools/weboob_lint.sh" unittests:2.7: @@ -43,12 +49,19 @@ build:3: script: - "./tools/local_install.sh ~/bin" -lint:3: +pyflakes:3: image: "python:3" stage: "test3" when: always script: - "./tools/pyflakes.sh" + +lint:3: + image: "python:3" + stage: "test3" + when: always + allow_failure: true + script: - "./tools/weboob_lint.sh" unittests:3: