You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/scripts/fill_prepatched_tests.sh
+8-9Lines changed: 8 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -25,16 +25,15 @@ echo "Select files that were changed and exist on the main branch:"
25
25
echo"$MODIFIED_DELETED_FILES"
26
26
27
27
rm -rf fixtures
28
-
rm -f filloutput.log
29
28
30
-
uv run fill $MODIFIED_DELETED_FILES --clean --until=$FILL_UNTIL --evm-bin evmone-t8n --block-gas-limit $BLOCK_GAS_LIMIT -m "state_test or blockchain_test" --output $BASE_TEST_PATH>>(tee -a filloutput.log)2>>(tee -a filloutput.log >&2)
31
-
32
-
if grep -q "FAILURES" filloutput.log;then
33
-
echo"Error: failed to generate .py tests from before the PR."
34
-
exit 1
35
-
fi
36
-
37
-
if grep -q "ERROR collecting test session" filloutput.log;then
29
+
set +e
30
+
uv run fill $MODIFIED_DELETED_FILES --clean --until=$FILL_UNTIL --evm-bin evmone-t8n --block-gas-limit $BLOCK_GAS_LIMIT -m "state_test or blockchain_test" --output $BASE_TEST_PATH
0 commit comments