You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/test-integration.sh
+20-8Lines changed: 20 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -152,21 +152,33 @@ if [ "$TEST_ENV" = "prod" ]; then
152
152
echo" ⚠️ API docs endpoint not accessible"
153
153
fi
154
154
155
-
# Run basic API tests (but don't fail if some tests don't work in production)
156
-
echo" Running core API tests..."
157
-
docker-compose -f $COMPOSE_FILEexec -T app python -m pytest tests/test_api.py -v ||echo"⚠️ Some production tests failed (expected in minimal production setup)"
155
+
# Check if pytest is available in production environment
156
+
echo" Checking if pytest is available in production..."
0 commit comments