1from __future__ import annotations
2
3from platform import python_implementation
4
5import pytest
6
7cpython_only = pytest.mark.skipif(python_implementation() != "CPython", reason="CPython only.")
8