cleanup and use of pylint #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Python package | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install flake8 mypy pylint | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Lint with flake8 | |
run: | | |
flake8 ./tests/*.py ./logic/*.py --max-line-length=120 | |
- name: Lint with pylint | |
run: | | |
pylint ./tests/*.py ./logic/*.py \ | |
--max-line-length=120 \ | |
--disable W1114 \ | |
--disable C0103 \ | |
--disable R0914 \ | |
--disable R0911 \ | |
--disable R0912 \ | |
--disable R0915 \ | |
--disable R0903 | |
# W1114: arguments-out-of-order (pylint getting confused) | |
# C0103: invalid-name | |
# R0914: too-many-locals | |
# R0911: too-many-return-statements | |
# R0912: too-many-branches (preferably should not disable this) | |
# R0915: too-many-statements (preferably should not disable this) | |
# R0903: too-few-public-methods | |
- name: Type checker with mypy | |
run: | | |
mypy ./tests/*.py ./logic/*.py | |
- name: Test with python unittest | |
run: | | |
python -m unittest tests/*.py --verbose |