Compare commits

...

1 Commits

Author SHA1 Message Date
epenet
37170796c3 Drop ignore-missing-annotations from pylint 2025-12-02 11:00:59 +01:00

View File

@@ -686,14 +686,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