Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions trio/_core/tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import pytest
from async_generator import async_generator

from .tutil import check_sequence_matches, gc_collect_harder
from .tutil import slow, check_sequence_matches, gc_collect_harder
from ... import _core
from ..._threads import to_thread_run_sync
from ..._timeouts import sleep, fail_after
Expand Down Expand Up @@ -993,9 +993,10 @@ async def task3(task_status):
scope.cancel()


@slow
async def test_timekeeping():
# probably a good idea to use a real clock for *one* test anyway...
TARGET = 0.1
TARGET = 1.0
# give it a few tries in case of random CI server flakiness
for _ in range(4):
real_start = time.perf_counter()
Expand Down