Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion scripts/run_gpu_4cards.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ for test_file in "${test_files[@]}"; do

if [ -d "${REPO_ROOT}/log" ]; then
echo ">>> grep error in ${REPO_ROOT}/log/"
grep -Rni --color=auto "error" "${REPO_ROOT}/log/" || true
grep -Rni --color=auto "error" "${REPO_ROOT}/log/" --exclude="pytest_*_error.log" || true
else
echo "${REPO_ROOT}/log directory not found"
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_pre_ce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ for subdir in "$run_path"*/; do
if [ $exit_code -ne 0 ]; then
if [ -d "${subdir%/}/log" ]; then
echo ">>> grep error in ${subdir%/}/log/"
grep -Rni --color=auto "error" "${subdir%/}/log/" || true
grep -Rni --color=auto "error" "${subdir%/}/log/" --exclude="pytest_*_error.log" || true
else
echo "${subdir%/}/log directory not found"
fi
Expand Down
Loading