1 $(PYTHON_DIR)/vendor-packages/pytest_asyncio/plugin.py:208: PytestDeprecationWarning: The configuration option "asyncio_default_fixture_loop_scope" is unset.
2 The event loop scope for asynchronous fixtures will default to the fixture caching scope. Future versions of pytest-asyncio will default the loop scope for asynchronous fixtures to function scope. Set the default fixture loop scope explicitly in order to avoid unexpected behavior in the future. Valid fixture loop scopes are: "function", "class", "module", "package", "session"
4 warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET))
5 ============================= test session starts ==============================
6 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(PYTHON)
7 cachedir: .pytest_cache
10 asyncio: mode=strict, default_loop_scope=None
11 collecting ... collected 34 items
13 tests/test_timeout.py::test_timeout PASSED
14 tests/test_timeout.py::test_timeout_finish_in_time PASSED
15 tests/test_timeout.py::test_timeout_disable PASSED
16 tests/test_timeout.py::test_timeout_is_none_no_schedule PASSED
17 tests/test_timeout.py::test_timeout_no_loop PASSED
18 tests/test_timeout.py::test_timeout_zero PASSED
19 tests/test_timeout.py::test_timeout_not_relevant_exception PASSED
20 tests/test_timeout.py::test_timeout_canceled_error_is_not_converted_to_timeout PASSED
21 tests/test_timeout.py::test_timeout_blocking_loop PASSED
22 tests/test_timeout.py::test_for_race_conditions PASSED
23 tests/test_timeout.py::test_timeout_time PASSED
24 tests/test_timeout.py::test_outer_coro_is_not_cancelled PASSED
25 tests/test_timeout.py::test_cancel_outer_coro PASSED
26 tests/test_timeout.py::test_timeout_suppress_exception_chain PASSED
27 tests/test_timeout.py::test_timeout_expired PASSED
28 tests/test_timeout.py::test_timeout_expired_as_function SKIPPED (Old...)
29 tests/test_timeout.py::test_timeout_expired_methods SKIPPED (Old ver...)
30 tests/test_timeout.py::test_timeout_inner_timeout_error PASSED
31 tests/test_timeout.py::test_timeout_inner_other_error PASSED
32 tests/test_timeout.py::test_timeout_at PASSED
33 tests/test_timeout.py::test_timeout_at_not_fired PASSED
34 tests/test_timeout.py::test_expired_after_rejecting PASSED
35 tests/test_timeout.py::test_reject_finished PASSED
36 tests/test_timeout.py::test_expired_after_timeout PASSED
37 tests/test_timeout.py::test_deadline PASSED
38 tests/test_timeout.py::test_async_timeout PASSED
39 tests/test_timeout.py::test_async_no_timeout PASSED
40 tests/test_timeout.py::test_shift PASSED
41 tests/test_timeout.py::test_shift_nonscheduled PASSED
42 tests/test_timeout.py::test_shift_negative_expired PASSED
43 tests/test_timeout.py::test_shift_by_expired PASSED
44 tests/test_timeout.py::test_shift_to_expired PASSED
45 tests/test_timeout.py::test_shift_by_after_cm_exit PASSED
46 tests/test_timeout.py::test_enter_twice PASSED
49 ======== 32 passed, 2 skipped ========