mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +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.parsers.rest import DocTestParser, PythonCodeBlockParser
|
||||
|
||||
from .fixtures import * # noqa: F403
|
||||
|
||||
pytest_collect_file = Sybil(
|
||||
parsers=[
|
||||
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_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")
|
||||
def tmp_output_dir() -> Path:
|
||||
|
|
Loading…
Reference in a new issue