From 6870ef8f4a25268ee332b57e44e10cf8e067ea4e Mon Sep 17 00:00:00 2001 From: s3lph Date: Tue, 5 Jun 2018 22:48:31 +0200 Subject: [PATCH] pycodestyle: ignore check for lines that are to long, as a max length of 79 gets ugly really quick. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fe9d335..2e53c7e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,5 +22,5 @@ codestyle: - apt-get install -y --no-install-recommends python3-dev python3-pip python3-coverage python3-setuptools build-essential - pip3 install wheel pycodestyle mypy - pip3 install -r requirements.txt - - pycodestyle matemat + - pycodestyle --ignore=E501 matemat - mypy matemat