File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ jobs:
134134 run : |
135135 uv run pytest tests/interop/ \
136136 -v \
137+ --no-cov \
137138 --timeout=120 \
138139 -x \
139140 --tb=short \
Original file line number Diff line number Diff line change @@ -490,14 +490,14 @@ async def start_all(
490490 # Now that the mesh is formed, validators can publish blocks/attestations
491491 # and they will propagate to all mesh peers.
492492 #
493- # Reset genesis time to 2 seconds in the future.
493+ # Reset genesis time to 6 seconds in the future.
494494 #
495495 # The initial genesis_time was a rough estimate set before phases 1-3.
496496 # Setting genesis slightly ahead gives the validator service time to
497497 # start its event loop and be ready when slot 1's interval 0 arrives.
498498 # On 2-core CI runners, starting at "now" causes the validator to
499499 # miss interval 0 of early slots due to event loop contention.
500- fresh_genesis = Uint64 (int (time .time ()) + 2 )
500+ fresh_genesis = Uint64 (int (time .time ()) + 6 )
501501 for node_wrapper in self .nodes :
502502 object .__setattr__ (node_wrapper .node .clock , "genesis_time" , fresh_genesis )
503503
You can’t perform that action at this time.
0 commit comments