mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2025-12-30 15:49:44 -06:00
7 lines
157 B
Bash
7 lines
157 B
Bash
#!/bin/bash
|
|
cd /app
|
|
echo "====== Running TimeTracker Tests ======"
|
|
python -m pytest tests/ -v --tb=short
|
|
echo "====== Tests Complete. Exit Code: $? ======"
|
|
|