From 055089325843240df39966ad84b42feed208e6cb Mon Sep 17 00:00:00 2001 From: fmessmer Date: Tue, 27 Feb 2024 13:30:54 +0100 Subject: [PATCH 1/2] add orig files to .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 359f113..94029fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ # https://github.com/github/gitignore/blob/main/Python.gitignore +*.orig + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] From 30144ae18d3b64ed4a3aff8b91bc67423c4d9ec8 Mon Sep 17 00:00:00 2001 From: fmessmer Date: Tue, 27 Feb 2024 13:31:12 +0100 Subject: [PATCH 2/2] install robmuxinator before pylint step --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 31babd4..fd86dd3 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -27,7 +27,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint - pip install matplotlib + pip install . - name: Analysing the code with pylint run: | pylint ${{ env.PYLINT_ARGS }} $(git ls-files '*.py') \ No newline at end of file