File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ dependencies = [
26
26
" ethereum-types>=0.2.1,<0.3" ,
27
27
" ethereum-rlp>=0.1.4,<0.2" ,
28
28
" cryptography>=45.0.1,<46" ,
29
+ " ethereum-execution-spec-tests @ git+https://github.com/ethereum/execution-spec-tests@dd83fba10492e6f63453b1a35608900b3aee1a87" ,
30
+ " ethereum-spec-evm-resolver @ git+https://github.com/petertdavies/ethereum-spec-evm-resolver" ,
29
31
]
30
32
31
33
[tool .setuptools ]
@@ -152,11 +154,11 @@ packages = [
152
154
153
155
[project .optional-dependencies ]
154
156
test = [
155
- " pytest>=7.4.0,<8 " ,
157
+ " pytest>=8,<9 " ,
156
158
" pytest-cov>=4.1.0,<5" ,
157
159
" pytest-xdist>=3.3.1,<4" ,
158
160
" GitPython>=3.1.0,<3.2" ,
159
- " filelock>=3.12.3,<3.13 " ,
161
+ " filelock>=3.15.1,<4 " ,
160
162
" requests" ,
161
163
" requests-cache>=1.2.1,<2" ,
162
164
]
Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ console_output_style = count
3
+ minversion = 7.0
4
+ python_files = *.py
5
+ testpaths = tests/
6
+ markers =
7
+ slow
8
+ pre_alloc_modify
9
+ ported_from
10
+ addopts =
11
+ -p pytest_plugins.concurrency
12
+ -p pytest_plugins.filler.pre_alloc
13
+ -p pytest_plugins.solc.solc
14
+ -p pytest_plugins.filler.filler
15
+ -p pytest_plugins.filler.static_filler
16
+ -p pytest_plugins.shared.execute_fill
17
+ -p pytest_plugins.forks.forks
18
+ -p pytest_plugins.help.help
19
+ --tb short
20
+ --ignore tests/cancun/eip4844_blobs/point_evaluation_vectors/
21
+ # these customizations require the pytest-custom-report plugin
22
+ report_passed_verbose = FILLED
23
+ report_xpassed_verbose = XFILLED
You can’t perform that action at this time.
0 commit comments