Skip to content

Commit d9240b7

Browse files
committed
add no-cov to interop tests
1 parent 535e533 commit d9240b7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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 \

tests/interop/helpers/node_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)