Files
TimeTracker/scripts/run_tests.sh
T
Dries Peeters 64b5fbe45d chore: move scripts to scripts/
- Move Python and shell scripts (apply_migration, check_routes, run_tests, etc.) to scripts/
- Move setup-https-mkcert and start-https (bat/sh) to scripts/
- Update start-local-test.bat and start-local-test.sh
2026-03-15 10:16:22 +01:00

9 lines
286 B
Bash

#!/bin/bash
# Run from project root: bash scripts/run_tests.sh
# In Docker, /app is the project root.
cd "$(dirname "$0")/.." 2>/dev/null || cd /app
echo "====== Running TimeTracker Tests ======"
python -m pytest tests/ -v --tb=short
echo "====== Tests Complete. Exit Code: $? ======"