Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
epenet
86467e4dcc Drop ignore-missing-annotations from pylint 2024-11-08 21:35:53 +01:00

View file

@ -688,14 +688,14 @@ jobs:
run: | run: |
. venv/bin/activate . venv/bin/activate
python --version python --version
pylint --ignore-missing-annotations=y homeassistant pylint homeassistant
- name: Run pylint (partially) - name: Run pylint (partially)
if: needs.info.outputs.test_full_suite == 'false' if: needs.info.outputs.test_full_suite == 'false'
shell: bash shell: bash
run: | run: |
. venv/bin/activate . venv/bin/activate
python --version python --version
pylint --ignore-missing-annotations=y homeassistant/components/${{ needs.info.outputs.integrations_glob }} pylint homeassistant/components/${{ needs.info.outputs.integrations_glob }}
pylint-tests: pylint-tests:
name: Check pylint on tests name: Check pylint on tests