forked from phoenix/litellm-mirror
build(config.yml): test fixes
This commit is contained in:
parent
1d8dbe0696
commit
81846ee563
1 changed files with 7 additions and 4 deletions
|
@ -159,11 +159,14 @@ jobs:
|
||||||
fail=false
|
fail=false
|
||||||
for i in {1..10}; do
|
for i in {1..10}; do
|
||||||
status=$(cat "/tmp/responses/status_${i}.txt")
|
status=$(cat "/tmp/responses/status_${i}.txt")
|
||||||
response=$(cat "/tmp/responses/response_${i}.json")
|
|
||||||
|
# Here, we need to set the correct response file path for each iteration
|
||||||
|
response_file="/tmp/responses/response_${i}.json" # This was missing in the provided script
|
||||||
|
|
||||||
|
response=$(cat "${response_file}")
|
||||||
echo "Response ${i} (Status code: ${status}):"
|
echo "Response ${i} (Status code: ${status}):"
|
||||||
cat "${response_file}"
|
echo "${response}" # Use echo here to print the contents
|
||||||
echo # Newline for readability
|
echo # Additional newline for readability
|
||||||
|
|
||||||
if [ "$status" -ne 200 ]; then
|
if [ "$status" -ne 200 ]; then
|
||||||
echo "A request did not return a 200 status code: $status"
|
echo "A request did not return a 200 status code: $status"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue