From b5f554d82856c9456030fd812d7ebb9bbf1e37f5 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 4 Sep 2023 18:14:33 +0200 Subject: [PATCH] Ignore too long lines in flake8 linter Signed-off-by: Steffen Vogel --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7bdfc7bbc..457df0b77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -91,7 +91,7 @@ build:source: test:flake8: stage: test script: - - flake8 python/ + - flake8 --ignore=E501 python/ image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG} tags: - docker