Skip to content
Merged
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 test/ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ function run_thread() {
# get python cases from cases.task file without asan or sim cases
if echo "$case_cmd" | grep -q "^pytest"; then
# get python cases from cases.task file without asan
if [[ $case_cmd == *"\.py"* ]]; then
if [[ $case_cmd == *".py"* ]]; then
case_file=$(echo "$case_cmd" | grep -o ".*\.py" | awk '{print $NF}')
fi
# get sim cases from cases.task file
Expand Down Expand Up @@ -563,7 +563,7 @@ cp_status=$?
echo "Copying allure results to $results_dir, status: $cp_status"

# generate the test report for pr
/opt/allure/bin/allure generate "$results_dir" -o "$report_dir" --clean
/opt/allure-2.22.1/bin/allure generate "$results_dir" -o "$report_dir" --clean
generate_status=$?
echo "Generating allure report, status: $generate_status"

Expand Down
Loading