From 5743650e6b0f077bf70b459694356dc3f63e7032 Mon Sep 17 00:00:00 2001 From: Sam <61994039+fourthDimensional@users.noreply.github.com> Date: Sat, 31 May 2025 19:34:10 -0500 Subject: [PATCH] Add uv.lock file to manage project dependencies and versions --- .pre-commit-config.yaml | 10 ++++++++++ tests.py => tests/tests.py | 0 2 files changed, 10 insertions(+) create mode 100644 .pre-commit-config.yaml rename tests.py => tests/tests.py (100%) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..806dfb9 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,10 @@ +# - your tests are in a folder called tests +- repo: local + hooks: + - id: pytest + name: pytest + entry: ./.venv/bin/pytest tests + language: system + types: [python] + pass_filenames: false + always_run: true \ No newline at end of file diff --git a/tests.py b/tests/tests.py similarity index 100% rename from tests.py rename to tests/tests.py