diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-08-14 17:37:25 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-08-15 10:44:53 +0200 |
commit | 95ec2341a02f50ddc2013d707818fcf3738c133f (patch) | |
tree | c7220fa74dd0bcac258fcd20f19b99bd82b96db7 /.gitlab-ci.yml | |
parent | 14dcc4a4f961bd6dd1d84ec858e0378cf43afa8b (diff) | |
download | gobject-introspection-95ec2341a02f50ddc2013d707818fcf3738c133f.tar.gz |
ci: always pass --count to flake8 to get more verbose output
This prints the error count to stderr, and more importantly 0 when
everything is OK so we know it did something.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d66f6149..e1ccd46f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ fedora-x86_64-meson-python3: - meson test --print-errorlogs --suite=gobject-introspection --no-suite=glib - cd .. - python3 -m pip install --user flake8 - - python3 -m flake8 + - python3 -m flake8 --count except: - tags artifacts: @@ -40,7 +40,7 @@ fedora-x86_64-meson-python2: - meson test --print-errorlogs --suite=gobject-introspection --no-suite=glib - cd .. - python2 -m pip install --user flake8 - - python2 -m flake8 + - python2 -m flake8 --count except: - tags artifacts: |