1 ============================= test session starts ==============================
2 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(PYTHON)
3 cachedir: .pytest_cache
6 collecting ... collected 5 items
8 tests/unit/test_fixture_config.py::test_config_update PASSED
9 tests/unit/test_fixture_config.py::test_requires_config_skips SKIPPED
10 tests/unit/test_fixture_config.py::test_requires_config_doesnt_skip PASSED
11 tests/unit/test_fixture_config.py::test_yield_requires_config_skips SKIPPED
12 tests/unit/test_fixture_config.py::test_yield_requires_config_doesnt_skip PASSED
14 =============================== warnings summary ===============================
15 tests/unit/test_fixture_config.py:52
16 $(@D)/tests/unit/test_fixture_config.py:52: PytestDeprecationWarning: @pytest.yield_fixture is deprecated.
17 Use @pytest.fixture instead; they are the same.
18 def yet_another_fixture():
20 tests/unit/test_fixture_config.py:63
21 $(@D)/tests/unit/test_fixture_config.py:63: PytestDeprecationWarning: @pytest.yield_fixture is deprecated.
22 Use @pytest.fixture instead; they are the same.
23 def yet_some_other_fixture():
25 -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
26 ======== 3 passed, 2 skipped, 2 warnings ========