chore: add pre-commit hook with ruff and pytest

- Add git pre-commit hook running ruff check, ruff format, pytest
- Fix import ordering in conftest.py
- Add placeholder test for test infrastructure
- Generate flake.lock

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-27 17:41:32 +00:00
parent c0b939627b
commit d213abf9d9
4 changed files with 39 additions and 8 deletions

View File

@@ -1,9 +1,10 @@
# ABOUTME: Pytest configuration and fixtures for AnimalTrack tests.
# ABOUTME: Provides database fixtures, test clients, and common utilities.
import pytest
import tempfile
import os
import tempfile
import pytest
@pytest.fixture

View File

@@ -0,0 +1,7 @@
# ABOUTME: Placeholder test to ensure test infrastructure works.
# ABOUTME: Remove once real tests are added.
def test_placeholder():
"""Placeholder test - remove when real tests exist."""
assert True