diff --git a/.github/workflows/run_test.yml b/.github/workflows/run_test.yml index ae49a20..9bac2d1 100644 --- a/.github/workflows/run_test.yml +++ b/.github/workflows/run_test.yml @@ -22,14 +22,20 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest + # pytest and pytest-cov is optional if coverage already installed + pip install pytest pylint pytest-cov pip install -U coverage if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Lint with Ruff - run: | - pip install ruff - ruff --format=github --target-version=py310 . - continue-on-error: true + + - name: Lint with pylint + run: | + pylint apps/home + continue-on-error: true + # - name: Lint with Ruff + # run: | + # pip install ruff + # ruff --format=github --target-version=py310 . + # continue-on-error: true - name: Test with pytest run: | # pytest -v -s