File tree 3 files changed +13
-1
lines changed 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Ethereum Execution Client Specifications
2
2
3
3
[ ![ GitPOAP Badge] ( https://public-api.gitpoap.io/v1/repo/ethereum/execution-specs/badge )] ( https://www.gitpoap.io/gh/ethereum/execution-specs )
4
+ [ ![ codecov] ( https://codecov.io/gh/ethereum/execution-specs/graph/badge.svg?token=0LQZO56RTM )] ( https://codecov.io/gh/ethereum/execution-specs )
4
5
5
6
## Description
6
7
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ markers = [
17
17
" evm_tools: marks tests as evm_tools (deselect with '-m \" not evm_tools\" ')" ,
18
18
]
19
19
20
+ [tool .coverage .run ]
21
+ omit = [
22
+ " */ethereum/*_glacier/*" ,
23
+ " */ethereum/dao_fork/*" ,
24
+ ]
25
+
20
26
[tool .docc ]
21
27
context = [
22
28
" docc.references.context" ,
Original file line number Diff line number Diff line change @@ -22,7 +22,12 @@ commands =
22
22
pytest \
23
23
-m " not slow" \
24
24
-n auto --maxprocesses 5 \
25
- --cov =ethereum --cov-report =term --cov-report " xml:{toxworkdir}/coverage.xml" \
25
+ --cov-config =pyproject.toml \
26
+ --cov =ethereum \
27
+ --cov-report =term \
28
+ --cov-report " xml:{toxworkdir}/coverage.xml" \
29
+ --no-cov-on-fail \
30
+ --cov-branch \
26
31
--ignore-glob =' tests/fixtures/*' \
27
32
--basetemp =" {temp_dir}/pytest"
28
33
You can’t perform that action at this time.
0 commit comments