Adding pytest run to the end of pre-commit (#1207)

This commit is contained in:
Daniel W. Anner 2023-03-15 11:45:06 -04:00 committed by GitHub
parent e9c6e86426
commit f583e096d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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