From 4aa319e5c31543883346e28a5459fa3642601be6 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Sat, 28 Jan 2023 00:51:12 +0000 Subject: [PATCH] CI: exclude generated protobuf files from flake8 --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 0f93e7c94..2064b93d4 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -126,7 +126,7 @@ task: install_script: - pip install flake8 flake8_script: - - flake8 . --count --select=$ELECTRUM_LINTERS --show-source --statistics + - flake8 . --count --select=$ELECTRUM_LINTERS --show-source --statistics --exclude "*_pb2.py" env: ELECTRUM_IMAGE: python:3.8 ELECTRUM_REQUIREMENTS: contrib/requirements/requirements.txt