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 27 28 29 30 31 32 33 34
|
import pytest
from asdf import config, schema
from . import create_large_tree, create_small_tree
@pytest.fixture
def small_tree():
return create_small_tree()
@pytest.fixture
def large_tree():
return create_large_tree()
@pytest.fixture(autouse=True)
def restore_default_config():
yield
config._global_config = config.AsdfConfig()
config._local = config._ConfigLocal()
@pytest.fixture(autouse=True)
def clear_schema_cache():
"""
Fixture that clears schema caches to prevent issues
when tests use same URI for different schema content.
"""
yield
schema._load_schema.cache_clear()
schema._load_schema_cached.cache_clear()
schema.load_custom_schema.cache_clear()
|