@@ -14,7 +14,6 @@ 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
18
17
python_source_dirs = src tests .github/scripts
19
18
20
19
[testenv:lint]
@@ -70,7 +69,6 @@ setenv =
70
69
extras =
71
70
test
72
71
lint # Required `gentest` for formatting tests
73
- commands_pre = solc-select use {[testenv]solc_version} --always-install
74
72
commands =
75
73
pytest -c ./pytest-framework.ini -n auto -m " not run_in_serial"
76
74
pytest -c ./pytest-framework.ini -m run_in_serial
@@ -85,20 +83,17 @@ description = Fill test cases in ./tests/ for deployed mainnet forks, except for
85
83
setenv =
86
84
# Use custom EELS_RESOLUTIONS_FILE if it is set via the environment (eg, in CI)
87
85
EELS_RESOLUTIONS_FILE = {env:EELS_RESOLUTIONS_FILE:}
88
- commands_pre = solc-select use {[testenv]solc_version} --always-install
89
86
commands = pytest -n auto -m " not slow and not zkevm" --skip-evm-dump --output =/tmp/fixtures-tox --clean
90
87
91
88
[testenv:tests-deployed-zkevm]
92
89
description = Fill zkEVM test cases in ./tests/ for deployed mainnet forks, using evmone-t8n.
93
- commands_pre = solc-select use {[testenv]solc_version} --always-install
94
90
commands = pytest -n auto -m " zkevm" --skip-evm-dump --block-gas-limit 36000000 --output =/tmp/fixtures-tox --clean --evm-bin =evmone-t8n
95
91
96
92
[testenv:tests-develop]
97
93
description = Fill test cases in ./tests/ for deployed and development mainnet forks
98
94
setenv =
99
95
# Use custom EELS_RESOLUTIONS_FILE if it is set via the environment (eg, in CI)
100
96
EELS_RESOLUTIONS_FILE = {env:EELS_RESOLUTIONS_FILE:}
101
- commands_pre = solc-select use {[testenv]solc_version} --always-install
102
97
commands = pytest -n auto --until ={[forks]develop} -k " not slow and not zkevm" --skip-evm-dump --output =/tmp/fixtures-tox --clean
103
98
104
99
# ----------------------------------------------------------------------------------------------
0 commit comments