============================= test session starts ==============================
platform darwin -- Python 3.12.3, pytest-8.1.1, pluggy-1.4.0
rootdir: /home/dev/project
configfile: pyproject.toml
plugins: cov-5.0.0, anyio-4.3.0
collected 42 items

tests/test_ok.py ....                                                    [  9%]
tests/test_math.py ..........                                            [ 33%]
tests/test_parse.py ...........                                          [ 59%]
tests/test_x.py .FF                                                      [ 66%]
tests/test_util.py ..............                                        [100%]

=================================== FAILURES ===================================
______________________________ test_y __________________________________

    def test_y():
        result = compute(2, 3)
>       assert result == 6
E       AssertionError: assert 5 == 6
E        +  where 5 = compute(2, 3)

tests/test_x.py:12: AssertionError
______________________________ test_z __________________________________

    def test_z():
        data = load_config("missing.toml")
>       assert data is not None
E       AssertionError: assert None is not None
E        +  where None = load_config('missing.toml')

tests/test_x.py:21: AssertionError
=========================== short test summary info ============================
FAILED tests/test_x.py::test_y - AssertionError: assert 5 == 6
FAILED tests/test_x.py::test_z - AssertionError: assert None is not None
========================= 2 failed, 40 passed in 3.21s =========================
