Skip to content

Commit 0617492

Browse files
committed
Allow cat of regression diff to fail
This matches a corresponding change in the CI workflow file for RMG-Py, which was introduced to account for very large differences between the dynamic and baseline test results. See: ReactionMechanismGenerator/RMG-Py#2316 (comment)
1 parent 05484f8 commit 0617492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
export FAILED=Yes
209209
fi
210210
echo "" # blank line so next block is interpreted as markdown
211-
cat "$regr_test-core.log"
211+
cat "$regr_test-core.log" || (echo "Dumping the whole log failed, please download it from GitHub actions. Here are the first 100 lines:" && head -n100 "$regr_test-core.log")
212212
echo "</details>"
213213
echo "<details>"
214214
if python-jl scripts/checkModels.py \

0 commit comments

Comments
 (0)