File tree Expand file tree Collapse file tree 4 files changed +2
-80
lines changed
Expand file tree Collapse file tree 4 files changed +2
-80
lines changed Original file line number Diff line number Diff line change 2828 - name : Run static checks
2929 run : tox -e static
3030
31- py3 :
32- runs-on : [self-hosted-ghr, size-xl-x64]
33- needs : static
34- steps :
35- - uses : actions/checkout@v4
36- with :
37- submodules : recursive
38- - name : Setup Python
39- uses : actions/setup-python@v5
40- with :
41- python-version : " 3.11"
42- - uses : ./.github/actions/setup-env
43- - name : Run py3 tests
44- run : tox -e py3
45-
46- pypy3 :
47- runs-on : [self-hosted-ghr, size-xl-x64]
48- needs : static
49- steps :
50- - uses : actions/checkout@v4
51- with :
52- submodules : recursive
53- - name : Setup Python
54- uses : actions/setup-python@v5
55- with :
56- python-version : " pypy3.11"
57- - uses : ./.github/actions/setup-env
58- - name : Run pypy3 tests
59- run : tox -e pypy3
60- env :
61- PYPY_GC_MAX : " 10G"
62-
6331 json_infra :
6432 runs-on : [self-hosted-ghr, size-xl-x64]
6533 needs : static
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ dependencies = [
2626 " ethereum-types>=0.2.4,<0.3" ,
2727 " ethereum-rlp>=0.1.4,<0.2" ,
2828 " cryptography>=45.0.1,<46" ,
29- " ethereum-execution-spec-tests @ git+https://github.com/ethereum/execution-spec-tests@0fdd974b0968e443ef5878430ba5194c43149a4b" ,
30- " ethereum-spec-evm-resolver @ git+https://github.com/petertdavies/ethereum-spec-evm-resolver" ,
3129]
3230
3331[tool .setuptools ]
Original file line number Diff line number Diff line change 1818"""
1919import sys
2020
21- __version__ = "2.18.0rc2 "
21+ __version__ = "2.18.0rc3.dev1 "
2222
2323#
2424# Ensure we can reach 1024 frames of recursion
Original file line number Diff line number Diff line change 11[tox]
22min_version = 2.0
3- envlist = py3,pypy3, json_infra,static
3+ envlist = json_infra,static
44
55[testenv:static]
66extras =
@@ -33,50 +33,6 @@ commands =
3333 --basetemp =" {temp_dir}/pytest" \
3434 tests
3535
36- [testenv:py3]
37- extras =
38- test
39- commands =
40- fill \
41- -m " not slow and not zkevm and not benchmark" \
42- -n auto --maxprocesses 6 \
43- --basetemp =" {temp_dir}/pytest" \
44- --clean \
45- eest_tests/execution-spec-tests/tests
46- fill \
47- -m " not slow and not zkevm and not benchmark" \
48- -n auto --maxprocesses 6 \
49- --basetemp =" {temp_dir}/pytest" \
50- --clean \
51- --fork Osaka \
52- eest_tests/execution-spec-tests/tests/osaka
53-
54- [testenv:pypy3]
55- extras =
56- test
57- passenv =
58- PYPY_GC_MAX
59- commands =
60- fill \
61- --tb =no \
62- --show-capture =no \
63- --disable-warnings \
64- -m " not slow and not zkevm and not benchmark" \
65- -n auto --maxprocesses 3 \
66- --basetemp =" {temp_dir}/pytest" \
67- --clean \
68- eest_tests/execution-spec-tests/tests
69- fill \
70- --tb =no \
71- --show-capture =no \
72- --disable-warnings \
73- -m " not slow and not zkevm and not benchmark" \
74- -n auto --maxprocesses 3 \
75- --basetemp =" {temp_dir}/pytest" \
76- --clean \
77- --fork Osaka \
78- eest_tests/execution-spec-tests/tests/osaka
79-
8036[testenv:optimized]
8137extras =
8238 test
You can’t perform that action at this time.
0 commit comments