mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-05-19 04:40:32 -05:00
64b5fbe45d
- 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
9 lines
286 B
Bash
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: $? ======"
|
|
|