From 03ceb9bcab004e9adac185f5d3e42a828b2f4c9c Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Fri, 29 Mar 2024 18:56:19 -0700 Subject: [PATCH] Ignore generated interfaces for pylint --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17e4ba9..31f3f98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: which meshtastic meshtastic --version - name: Run pylint - run: pylint meshtastic examples/ --ignore-patterns ".*_pb2.py$" + run: pylint meshtastic examples/ --ignore-patterns ".*_pb2.pyi?$" - name: Run tests with pytest run: pytest --cov=meshtastic - name: Generate coverage report