support/misc/gitlab-ci.yml.in: use python3 for flake8
The pkg-stats script now uses Python3 only constructs (the "async" keyword) and therefore fails to pass the Python2 flake8 test. Let's use the Python3 flake8 instead. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/681711009 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Reviewed-by: Titouan Christophe <titouan.christophe@railnova.eu> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
23f7fa874b
commit
90857e2dde
@ -25,7 +25,7 @@ check-flake8:
|
|||||||
- find * -type f -print0 | xargs -0 file | grep 'Python script' | cut -d':' -f1 >> files.txt
|
- find * -type f -print0 | xargs -0 file | grep 'Python script' | cut -d':' -f1 >> files.txt
|
||||||
- sort -u files.txt | tee files.processed
|
- sort -u files.txt | tee files.processed
|
||||||
script:
|
script:
|
||||||
- python -m flake8 --statistics --count --max-line-length=132 $(cat files.processed)
|
- python3 -m flake8 --statistics --count --max-line-length=132 $(cat files.processed)
|
||||||
after_script:
|
after_script:
|
||||||
- wc -l files.processed
|
- wc -l files.processed
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user