From 69a7fd35d599248e0f49242b6512d7a42016ee0f Mon Sep 17 00:00:00 2001 From: pbrassel <52356233+pbrassel@users.noreply.github.com> Date: Fri, 17 Apr 2026 17:56:27 +0200 Subject: [PATCH] chore: pre-push hook for `pytest` --- .pre-commit-config.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e25a0e3..c285505 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,3 +23,12 @@ repos: - id: conventional-pre-commit stages: [ commit-msg ] args: [ ] + - repo: local + hooks: + - id: pytest + name: pytest + entry: pytest tests + language: system + types: [python] + always_run: true + stages: [ pre-push ]