File tree Expand file tree Collapse file tree 7 files changed +16
-13
lines changed
frontier/identity_precompile
unscheduled/eip7692_eof_v1 Expand file tree Collapse file tree 7 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ Users can select any of the artifacts depending on their testing needs for their
57
57
58
58
### 📋 Misc
59
59
60
+ - 🔀 Use only relative imports in ` tests/ ` directory ([ #1848 ] ( https://github.com/ethereum/execution-spec-tests/pull/1848 ) ).
60
61
- 🔀 Misc. doc updates, including a navigation footer ([ #1846 ] ( https://github.com/ethereum/execution-spec-tests/pull/1846 ) ).
61
62
- 🔀 Remove Python 3.10 support ([ #1808 ] ( https://github.com/ethereum/execution-spec-tests/pull/1808 ) ).
62
63
- 🔀 Modernize codebase with Python 3.11 language features ([ #1812 ] ( https://github.com/ethereum/execution-spec-tests/pull/1812 ) ).
Original file line number Diff line number Diff line change 30
30
from ethereum_test_tools .vm .opcode import Opcodes as Op
31
31
from ethereum_test_types import TransactionType
32
32
from ethereum_test_vm .opcode import Opcode
33
- from tests .byzantium .eip198_modexp_precompile .test_modexp import ModExpInput
34
- from tests .cancun .eip4844_blobs .spec import Spec as BlobsSpec
35
- from tests .istanbul .eip152_blake2 .common import Blake2bInput
36
- from tests .istanbul .eip152_blake2 .spec import Spec as Blake2bSpec
37
- from tests .osaka .eip7951_p256verify_precompiles import spec as p256verify_spec
38
- from tests .osaka .eip7951_p256verify_precompiles .spec import FieldElement
39
- from tests .prague .eip2537_bls_12_381_precompiles import spec as bls12381_spec
40
- from tests .prague .eip2537_bls_12_381_precompiles .spec import BytesConcatenation
41
33
34
+ from ..byzantium .eip198_modexp_precompile .test_modexp import ModExpInput
35
+ from ..cancun .eip4844_blobs .spec import Spec as BlobsSpec
36
+ from ..istanbul .eip152_blake2 .common import Blake2bInput
37
+ from ..istanbul .eip152_blake2 .spec import Spec as Blake2bSpec
38
+ from ..osaka .eip7951_p256verify_precompiles import spec as p256verify_spec
39
+ from ..osaka .eip7951_p256verify_precompiles .spec import FieldElement
40
+ from ..prague .eip2537_bls_12_381_precompiles import spec as bls12381_spec
41
+ from ..prague .eip2537_bls_12_381_precompiles .spec import BytesConcatenation
42
42
from .helpers import code_loop_precompile_call
43
43
44
44
REFERENCE_SPEC_GIT_PATH = "TODO"
Original file line number Diff line number Diff line change 11
11
Transaction ,
12
12
)
13
13
from ethereum_test_tools import Opcodes as Op
14
- from tests .frontier .identity_precompile .common import Constants
14
+
15
+ from .common import Constants
15
16
16
17
17
18
@pytest .mark .ported_from (
Original file line number Diff line number Diff line change 15
15
from ethereum_test_tools .vm .opcode import Opcodes as Op
16
16
from ethereum_test_types .eof .v1 import Container
17
17
from ethereum_test_types .helpers import compute_create_address
18
- from tests .prague .eip7702_set_code_tx .spec import Spec
19
18
19
+ from ....prague .eip7702_set_code_tx .spec import Spec
20
20
from .. import EOF_FORK_NAME
21
21
from .helpers import (
22
22
slot_all_subcall_gas_gone ,
Original file line number Diff line number Diff line change 13
13
from ethereum_test_tools .code .generators import Initcode as LegacyInitcode
14
14
from ethereum_test_types import TransactionReceipt
15
15
from ethereum_test_types .eof .v1 import Container
16
- from tests .prague .eip7702_set_code_tx .spec import Spec
17
16
17
+ from ....prague .eip7702_set_code_tx .spec import Spec
18
18
from .. import EOF_FORK_NAME
19
19
from ..eip7620_eof_create .helpers import (
20
20
smallest_initcode_subcontainer ,
Original file line number Diff line number Diff line change 20
20
from ethereum_test_tools .vm .opcode import Opcodes as Op
21
21
from ethereum_test_types .eof .v1 import Container , Section
22
22
from ethereum_test_vm .bytecode import Bytecode
23
- from tests .prague .eip7702_set_code_tx .spec import Spec
24
23
24
+ from ....prague .eip7702_set_code_tx .spec import Spec
25
25
from .. import EOF_FORK_NAME
26
26
from ..eip7620_eof_create .helpers import (
27
27
slot_a ,
Original file line number Diff line number Diff line change 7
7
from ethereum_test_tools .vm .opcode import Opcodes as Op
8
8
from ethereum_test_types .eof .v1 import Container , Section
9
9
from ethereum_test_vm import Bytecode , EVMCodeType
10
- from tests .unscheduled .eip7692_eof_v1 .eip7069_extcall .spec import (
10
+
11
+ from .eip7069_extcall .spec import (
11
12
LEGACY_CALL_FAILURE ,
12
13
LEGACY_CALL_SUCCESS ,
13
14
)
You can’t perform that action at this time.
0 commit comments