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
fix(github/coverage,tox): Use skip-evm-dump for fill, add block-gas-limit to zkevm tox (#1629)
* fix(github/coverage): Use skip-evm-dump for fill
* fix(tox): Add `block-gas-limit` to zkevm tox
* fix(github/coverage): Add `--block-gas-limit 36000000` to coverage
echo "uv run fill $files --clean --until=Cancun --evm-bin evmone-t8n >> filloutput.log 2>&1"
180
-
uv run fill $files --clean --until=Cancun --evm-bin evmone-t8n > >(tee -a filloutput.log) 2> >(tee -a filloutput.log >&2)
179
+
echo "uv run fill $files --clean --until=Cancun --evm-bin evmone-t8n --skip-evm-dump --block-gas-limit 36000000 >> filloutput.log 2>&1"
180
+
uv run fill $files --clean --until=Cancun --evm-bin evmone-t8n --skip-evm-dump --block-gas-limit 36000000 > >(tee -a filloutput.log) 2> >(tee -a filloutput.log >&2)
181
181
182
182
if grep -q "FAILURES" filloutput.log; then
183
183
echo "Error: failed to generate .py tests."
@@ -228,8 +228,8 @@ jobs:
228
228
rm filloutput.log
229
229
230
230
if [ -n "$files_fixed" ]; then
231
-
echo "uv run fill $files_fixed --clean --until=Cancun --evm-bin evmone-t8n >> filloutput.log 2>&1"
232
-
uv run fill $files_fixed --clean --until=Cancun --evm-bin evmone-t8n > >(tee -a filloutput.log) 2> >(tee -a filloutput.log >&2)
231
+
echo "uv run fill $files_fixed --clean --until=Cancun --evm-bin evmone-t8n --skip-evm-dump --block-gas-limit 36000000 >> filloutput.log 2>&1"
232
+
uv run fill $files_fixed --clean --until=Cancun --evm-bin evmone-t8n --skip-evm-dump --block-gas-limit 36000000 > >(tee -a filloutput.log) 2> >(tee -a filloutput.log >&2)
233
233
234
234
if grep -q "FAILURES" filloutput.log; then
235
235
echo "Error: failed to generate .py tests from before the PR."
0 commit comments