Skip to content

Commit

Permalink
Edit workflow to get .pylintrc recognized.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackieblaum committed Oct 2, 2024
1 parent f2480c8 commit 57a52e9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,18 @@ jobs:
pip install pytest pytest-cov
pip install .
- name: Clear cache
- name: Clear Pylint cache
run: |
rm -rf ~/.pylint.d
- name: Lint with pylint using custom rcfile
- name: Lint with Pylint using custom rcfile
run: |
set -e # Ensure the workflow fails if any linting issues are found
pylint --rcfile=.pylintrc eclipsebin
- name: Run tests with pytest
run: |
set -e # Ensure the workflow fails if any tests fail
pytest --cov
- name: Upload results to Codecov
Expand Down

0 comments on commit 57a52e9

Please sign in to comment.