summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2021-01-04 11:15:51 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2021-01-04 12:02:46 +1000
commitba0aed7b2736e1f1d77ad0686d5e454f2a29837e (patch)
tree3280edc768cebf360d97efc3b8b71140dab8fa39 /.gitlab-ci.yml
parent18c92652242e53f2ee74f0ffc268c3d4ef4119c3 (diff)
downloadlibinput-ba0aed7b2736e1f1d77ad0686d5e454f2a29837e.tar.gz
gitlab CI: fix flake8 complaints
tools/libinput-measure-fuzz.py:212:15: F523 '...'.format(...) has unused arguments at position(s): 1 But the E741 is better turned off in general: tools/libinput-measure-fuzz.py:319:29: E741 ambiguous variable name 'l' Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 449e54a6..b9fcdf27 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -753,7 +753,7 @@ flake8@fedora:32:
before_script:
- dnf install -y python3-flake8
script:
- - flake8-3 --ignore=W501,E501,W504 $(git grep -l '^#!/usr/bin/env python3')
+ - flake8-3 --ignore=W501,E501,W504,E741 $(git grep -l '^#!/usr/bin/env python3')
#