From c6d8dd8ccb25b63edf4309242fa9f5f0895f58a6 Mon Sep 17 00:00:00 2001 From: Sevy Harris Date: Wed, 13 May 2026 09:04:48 -0400 Subject: [PATCH] try to suppress conda.cli regression test error It looks like something in the regression test log is breaking the markdown formatting, so this fences it in with ``` marks --- .github/workflows/CI.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a02c8170d5..0eb779eff5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -225,7 +225,9 @@ jobs: export FAILED=Yes fi echo "" # blank line so next block is interpreted as markdown + echo '```' 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") + echo '```' echo "" echo "
" if conda run -n rmg_env_without_rms python scripts/checkModels.py \ @@ -242,7 +244,9 @@ jobs: export FAILED=Yes fi echo "" # blank line so next block is interpreted as markdown + echo '```' cat "$regr_test-edge.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") + echo '```' echo "
" # Check for Regression between Reference and Dynamic (skip superminimal)