1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# Copyright 2009-2024 Joshua Bronson. All rights reserved.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import annotations
import sys
import typing as t
from collections.abc import Mapping
from collections.abc import MutableMapping
import pytest
import bidict
# https://github.com/thisch/pytest-sphinx/issues/5#issuecomment-618072237
@pytest.fixture(autouse=True)
def _add_doctest_globals(doctest_namespace: t.MutableMapping[str, t.Any]) -> None:
doctest_namespace['Mapping'] = Mapping
doctest_namespace['MutableMapping'] = MutableMapping
doctest_namespace['pypy'] = sys.implementation.name == 'pypy'
doctest_namespace['sys'] = sys
doctest_namespace.update(i for i in vars(bidict).items() if not i[0].startswith('_'))
|