Skip to content

Commit

Permalink
build(pre-commit): fix pre-commit runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-W committed Jun 6, 2024
1 parent 678cfd5 commit 03563b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,29 +61,29 @@ repos:
stages: [commit]
language: system
pass_filenames: false
entry: inv style.reformat
entry: poetry run inv style.reformat
types: [python]

- id: style-check
name: style-check
stages: [push]
language: system
pass_filenames: false
entry: inv style
entry: poetry run inv style
types: [python]

- id: security-check
name: security-check
stages: [push]
language: system
pass_filenames: false
entry: inv secure
entry: poetry run inv secure
types: [python]

- id: test
name: test
stages: [push]
language: system
pass_filenames: false
entry: inv test -a
entry: poetry run inv test -a
types: [python]

0 comments on commit 03563b8

Please sign in to comment.