mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2025-01-10 06:04:28 +00:00
import fixtures
This commit is contained in:
parent
74912e2d70
commit
de30f83edd
2 changed files with 15 additions and 0 deletions
|
@ -5,6 +5,8 @@ import pytest
|
||||||
from sybil import Sybil
|
from sybil import Sybil
|
||||||
from sybil.parsers.rest import DocTestParser, PythonCodeBlockParser
|
from sybil.parsers.rest import DocTestParser, PythonCodeBlockParser
|
||||||
|
|
||||||
|
from .fixtures import * # noqa: F403
|
||||||
|
|
||||||
pytest_collect_file = Sybil(
|
pytest_collect_file = Sybil(
|
||||||
parsers=[
|
parsers=[
|
||||||
DocTestParser(optionflags=ELLIPSIS + NORMALIZE_WHITESPACE),
|
DocTestParser(optionflags=ELLIPSIS + NORMALIZE_WHITESPACE),
|
||||||
|
|
|
@ -17,6 +17,19 @@ from nwb_linkml.adapters.namespaces import NamespacesAdapter
|
||||||
from nwb_linkml.io import schema as io
|
from nwb_linkml.io import schema as io
|
||||||
from nwb_schema_language import Attribute, Dataset, Group
|
from nwb_schema_language import Attribute, Dataset, Group
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"NWBSchemaTest",
|
||||||
|
"TestSchemas",
|
||||||
|
"data_dir",
|
||||||
|
"linkml_schema",
|
||||||
|
"linkml_schema_bare",
|
||||||
|
"nwb_core_fixture",
|
||||||
|
"nwb_schema",
|
||||||
|
"tmp_output_dir",
|
||||||
|
"tmp_output_dir_func",
|
||||||
|
"tmp_output_dir_mod",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
@pytest.fixture(scope="session")
|
||||||
def tmp_output_dir() -> Path:
|
def tmp_output_dir() -> Path:
|
||||||
|
|
Loading…
Reference in a new issue