From b11664f62b804465a875fbf01e5fa8ce7cb16352 Mon Sep 17 00:00:00 2001 From: Jackie Date: Thu, 3 Oct 2024 14:07:05 -0700 Subject: [PATCH] Try direct path for .pylintrc in tests.yml. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e174ee5..879becd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -38,7 +38,7 @@ jobs: - name: Lint with Pylint using custom rcfile run: | set -e # Ensure the workflow fails if any linting issues are found - pylint --rcfile=.pylintrc eclipsebin + pylint --rcfile=~/.pylintrc eclipsebin - name: Run tests with pytest run: |