Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ __pycache__

.pytest_cache


.cursor/*

.kiro/*
.vscode/
.vscode
.kiro/specs*
.ropeproject
# macOS
Expand All @@ -19,6 +19,8 @@ Thumbs.db

.env

htmlcov/

.venv-coords/
run_analyzer_simple.py

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# TryFormAI Analysis Worker

Open‑source video analysis engine for golf swing evaluation. It processes side and rear view videos to compute biomechanics, consistency, tempo metrics, visual annotations, and handicap‑aware scores with dynamic scaling.
Open‑source video analysis engine for golf swing evaluation. It processes side and rear view videos to compute biomechanics, consistency, tempo metrics, visual annotations, and handicap‑aware scores with dynamic scaling.


## Quick Start
- Install dependencies (see Requirements), then run tests to validate your environment.
Expand Down
13 changes: 13 additions & 0 deletions tests/edge_cases/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""
Edge Cases Test Suite

This module contains comprehensive edge case and error handling tests for the
golf swing analysis system. It validates system resilience under failure
conditions and ensures robust production-ready error recovery.

Test Categories:
- Error handling and exception scenarios
- Boundary conditions and invalid inputs
- Configuration errors and malformed data
- Integration failure scenarios
"""
Loading
Loading