blob: 66291fca1b6f621315fc624cabcb008d54b5ae25 [file] [edit]
from __future__ import annotations
from platform import python_implementation
import pytest
cpython_only = pytest.mark.skipif(python_implementation() != "CPython", reason="CPython only.")