Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions buildkite/scripts/upload_codecov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ done
# Combine all coverage database files into a single .coverage file
# This will apply the [paths] remapping from .coveragerc to normalize paths to vllm/
echo "Combining coverage files..."
COMBINE_OUTPUT=$(python3 -m coverage combine --keep 2>&1)
COMBINE_OUTPUT=$(coverage combine --keep 2>&1)
COMBINE_EXIT=$?

echo "$COMBINE_OUTPUT"
Expand All @@ -72,7 +72,7 @@ echo "Successfully combined coverage files"
# Generate XML report from the combined coverage data
# This will use the path mappings from .coveragerc to normalize paths
echo "Generating XML coverage report..."
python3 -m coverage xml -o coverage.xml
coverage xml -o coverage.xml

if [ ! -f coverage.xml ]; then
echo "Error: Failed to generate coverage.xml"
Expand Down