-
-
Notifications
You must be signed in to change notification settings - Fork 19.4k
Closed
Labels
Description
pylint is helping unearth some issues, but it's quite slow, especially for local development
as brought up on Slack by @jorisvandenbossche , let's just run it in CI instead
Task would be:
- in
pandas/.pre-commit-config.yaml
Lines 62 to 65 in 57d8d3a
| - repo: https://github.com/pycqa/pylint | |
| rev: v2.15.5 | |
| hooks: | |
| - id: pylint |
add
language: system
pass_filenames: false
stages: [manual]
- modify the name of to "Typing + pylint"
pandas/.github/workflows/code-checks.yml
Lines 89 to 93 in e02133c
- name: Typing uses: pre-commit/action@v2.0.3 with: extra_args: --hook-stage manual --all-files if: ${{ steps.build.outcome == 'success' && always() }}