From 044648a4d353e18908a7c08d92f64dec7b1cf78f Mon Sep 17 00:00:00 2001 From: Eg0ra Date: Wed, 9 Oct 2024 13:20:41 +0700 Subject: [PATCH] Fix pre-commit warnings --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ce786f4..5264814 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -42,25 +42,25 @@ repos: language: system pass_filenames: false types: [file] - stages: [push] + stages: [pre-push] - id: tests name: run tests entry: inv pytest.run --params="--cov=." language: system pass_filenames: false types: [python] - stages: [push] + stages: [pre-push] - id: mypy name: mypy entry: inv mypy.run language: system pass_filenames: false types: [file] - stages: [push] + stages: [pre-push] - id: package_installation_verify name: verify package can be installed entry: pip install --dry-run . language: system pass_filenames: false types: [python] - stages: [push] + stages: [pre-push]