11 lines
160 B
Python
11 lines
160 B
Python
import pytest
|
|
|
|
from docslib.registry import registry
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def clean_registry():
|
|
registry.clear()
|
|
yield
|
|
registry.clear()
|
|
|