File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -179,8 +179,7 @@ jobs:
179179 mkdir -p fixtures/eof_tests
180180
181181 echo "uv run fill $files --until=Cancun --evm-bin evmone-t8n >> filloutput.log 2>&1"
182- uv run fill $files --until=Cancun --evm-bin evmone-t8n >> filloutput.log 2>&1
183- cat filloutput.log
182+ uv run fill $files --until=Cancun --evm-bin evmone-t8n > >(tee -a filloutput.log) 2> >(tee -a filloutput.log >&2)
184183
185184 if grep -q "FAILURES" filloutput.log; then
186185 echo "Error: failed to generate .py tests."
@@ -235,8 +234,7 @@ jobs:
235234
236235 if [ -n "$files_fixed" ]; then
237236 echo "uv run fill $files_fixed --until=Cancun --evm-bin evmone-t8n >> filloutput.log 2>&1"
238- uv run fill $files_fixed --until=Cancun --evm-bin evmone-t8n >> filloutput.log 2>&1
239- cat filloutput.log
237+ uv run fill $files_fixed --until=Cancun --evm-bin evmone-t8n > >(tee -a filloutput.log) 2> >(tee -a filloutput.log >&2)
240238
241239 if grep -q "FAILURES" filloutput.log; then
242240 echo "Error: failed to generate .py tests from before the PR."
You can’t perform that action at this time.
0 commit comments