@@ -14,6 +14,7 @@ env_list =
14
14
runner = uv-venv-lock-runner
15
15
package = editable
16
16
wheel_build_env = .pkg
17
+ solc_version = 0.8.24
17
18
python_source_dirs = src tests .github/scripts
18
19
19
20
[testenv:lint]
@@ -68,7 +69,7 @@ setenv =
68
69
CI = {env:CI:}
69
70
extras =
70
71
test
71
- lint # Required `gentest` for formatting tests
72
+ lint # Required `gentest` for formatting tests
72
73
commands =
73
74
pytest -c ./pytest-framework.ini -n auto -m " not run_in_serial"
74
75
pytest -c ./pytest-framework.ini -m run_in_serial
@@ -83,18 +84,18 @@ description = Fill test cases in ./tests/ for deployed mainnet forks, except for
83
84
setenv =
84
85
# Use custom EELS_RESOLUTIONS_FILE if it is set via the environment (eg, in CI)
85
86
EELS_RESOLUTIONS_FILE = {env:EELS_RESOLUTIONS_FILE:}
86
- commands = pytest -n auto -m " not slow and not zkevm " --skip-evm-dump --output =/tmp/fixtures-tox --clean
87
+ commands = pytest -n auto -m " not slow and not benchmark " --skip-evm-dump --output =/tmp/fixtures-tox --clean
87
88
88
- [testenv:tests-deployed-zkevm ]
89
- description = Fill zkEVM test cases in ./tests/ for deployed mainnet forks, using evmone-t8n.
90
- commands = pytest -n auto -m " zkevm " --skip-evm-dump --block-gas-limit 36000000 --output =/tmp/fixtures-tox --clean --evm-bin =evmone-t8n
89
+ [testenv:tests-deployed-benchmark ]
90
+ description = Fill benchmarking test cases in ./tests/ for deployed mainnet forks, using evmone-t8n.
91
+ commands = pytest -n auto -m " benchmark " --skip-evm-dump --block-gas-limit 36000000 --output =/tmp/fixtures-tox --clean --evm-bin =evmone-t8n
91
92
92
93
[testenv:tests-develop]
93
94
description = Fill test cases in ./tests/ for deployed and development mainnet forks
94
95
setenv =
95
96
# Use custom EELS_RESOLUTIONS_FILE if it is set via the environment (eg, in CI)
96
97
EELS_RESOLUTIONS_FILE = {env:EELS_RESOLUTIONS_FILE:}
97
- commands = pytest -n auto --until ={[forks]develop} -k " not slow and not zkevm " --skip-evm-dump --output =/tmp/fixtures-tox --clean
98
+ commands = pytest -n auto --until ={[forks]develop} -k " not slow and not benchmark " --skip-evm-dump --output =/tmp/fixtures-tox --clean
98
99
99
100
# ----------------------------------------------------------------------------------------------
100
101
# ALIAS ENVIRONMENTS
0 commit comments