From 3f9047a62b0c29f8d4088b443c3238e0e9529f16 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 11 Sep 2021 12:47:57 -0500 Subject: [PATCH] cirrus: run pylint for python 2 and python 3 Signed-off-by: Rob Browning --- .cirrus.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 4cb4a4b..fd92f24 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,6 +1,6 @@ task: - name: debian (py2 check root) + name: debian (py2 check/lint root) container: image: debian:buster cpu: 4 @@ -9,7 +9,8 @@ task: set -xe dev/prep-for-debianish-build python2 dev/system-info - make -j6 BUP_PYTHON_CONFIG=python2.7-config check + BUP_PYTHON_CONFIG=python2.7-config ./configure --with-pylint=yes + make -j6 check task: name: debian (py2 long-check) @@ -42,7 +43,7 @@ task: "$(pwd)" | su -l bup task: - name: debian (py3 check root) + name: debian (py3 check/lint root) container: image: debian:buster cpu: 4 @@ -51,7 +52,8 @@ task: set -xe dev/prep-for-debianish-build python3 dev/system-info - make -j6 BUP_PYTHON_CONFIG=python3-config check + BUP_PYTHON_CONFIG=python3-config ./configure --with-pylint=yes + make -j6 check task: name: debian (py3 long-check) -- 2.39.2