File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,14 @@ class _FixtureSource(TypedDict):
26
26
"url" : "https://github.com/ethereum/execution-spec-tests/releases/download/v4.5.0/fixtures_stable.tar.gz" ,
27
27
"fixture_path" : "tests/fixtures/latest_fork_tests" ,
28
28
},
29
+ "osaka_tests" : {
30
+ "url" : "https://github.com/ethereum/execution-spec-tests/releases/download/fusaka-devnet-2%40v1.1.0/fixtures_fusaka-devnet-2.tar.gz" ,
31
+ "fixture_path" : "tests/fixtures/osaka_tests" ,
32
+ },
29
33
}
30
34
31
35
32
36
ETHEREUM_TESTS_PATH = TEST_FIXTURES ["ethereum_tests" ]["fixture_path" ]
33
37
EEST_TESTS_PATH = TEST_FIXTURES ["latest_fork_tests" ]["fixture_path" ]
38
+
39
+ OSAKA_TEST_PATH = TEST_FIXTURES ["osaka_tests" ]["fixture_path" ]
Original file line number Diff line number Diff line change 3
3
4
4
import pytest
5
5
6
- from tests .helpers import EEST_TESTS_PATH , ETHEREUM_TESTS_PATH
6
+ from tests .helpers import ETHEREUM_TESTS_PATH , OSAKA_TEST_PATH
7
7
from tests .helpers .load_evm_tools_tests import (
8
8
fetch_evm_tools_tests ,
9
9
idfn ,
10
10
load_evm_tools_test ,
11
11
)
12
12
13
13
ETHEREUM_STATE_TESTS_DIR = f"{ ETHEREUM_TESTS_PATH } /GeneralStateTests/"
14
- EEST_STATE_TESTS_DIR = f"{ EEST_TESTS_PATH } /state_tests/"
14
+ EEST_STATE_TESTS_DIR = f"{ OSAKA_TEST_PATH } /fixtures /state_tests/"
15
15
FORK_NAME = "Osaka"
16
16
17
17
Original file line number Diff line number Diff line change 3
3
4
4
import pytest
5
5
6
- from tests .helpers import EEST_TESTS_PATH , ETHEREUM_TESTS_PATH
6
+ from tests .helpers import ETHEREUM_TESTS_PATH , OSAKA_TEST_PATH
7
7
from tests .helpers .load_state_tests import (
8
8
Load ,
9
9
fetch_state_test_files ,
12
12
)
13
13
14
14
ETHEREUM_BLOCKCHAIN_TESTS_DIR = f"{ ETHEREUM_TESTS_PATH } /BlockchainTests/"
15
- EEST_BLOCKCHAIN_TESTS_DIR = f"{ EEST_TESTS_PATH } /blockchain_tests/"
15
+ EEST_BLOCKCHAIN_TESTS_DIR = f"{ OSAKA_TEST_PATH } /fixtures /blockchain_tests/"
16
16
NETWORK = "Osaka"
17
17
PACKAGE = "osaka"
18
18
You can’t perform that action at this time.
0 commit comments