From a87df291357ae9ba662ebda815d210bae91a74a5 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 28 May 2018 09:44:01 +0200 Subject: [PATCH] gitlab-ci: pep8 has been replaced by pycodestyle --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e5b9597f..ca9f3873 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -128,7 +128,7 @@ lint_format_safety_checks: script: - apk add --no-cache bash dash ca-certificates python3 - python3 -m ensurepip - - pip3 install pep8 pyflakes pylint safety + - pip3 install pycodestyle pyflakes pylint safety - export EXITVALUE=0 - ./hooks/pre-commit || export EXITVALUE=1 - safety check --full-report || export EXITVALUE=1