This commit is contained in:
Iliyan Angelov
2025-11-28 20:24:58 +02:00
parent b5698b6018
commit cf97df9aeb
135 changed files with 7641 additions and 357 deletions

16
Backend/run_tests.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Script to run integration tests for the Hotel Booking API
echo "Running integration tests for Hotel Booking API..."
echo "=================================================="
# Change to Backend directory
cd "$(dirname "$0")"
# Run pytest with integration marker
pytest src/tests/ -v -m integration --tb=short
# Exit with pytest's exit code
exit $?