From 6bc776daf159ed0f731fa561a9d90c428c73d30c Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 5 Jan 2019 14:52:17 +0000 Subject: [PATCH] Accept non-zero exit codes from pycodestyle Signed-off-by: Niels Thykier --- ci/gitlab-ci-runner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/gitlab-ci-runner b/ci/gitlab-ci-runner index ada2fe2..f511404 100755 --- a/ci/gitlab-ci-runner +++ b/ci/gitlab-ci-runner @@ -22,7 +22,7 @@ if [ $err = 0 ] && [ "x$1" = "x--with-coverage" ]; then echo python3-coverage html -d coverage mkdir codestyle - pycodestyle --config=setup.cfg britney.py britney2 --show-source --count > codestyle/codestyle.txt + pycodestyle --config=setup.cfg britney.py britney2 --show-source --count > codestyle/codestyle.txt || : fi exit $err