diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5d1a2831..62a21519 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,3 +19,12 @@ repos: - id: yamllint name: Lint YAML files args: [--format, parsable, --strict] + - repo: local + hooks: + - id: pytest + name: Run PyTest Case Checks + entry: pytest + language: system + args: [--tb=short, -v] + pass_filenames: false + always_run: true