hold up can this really be the bug

This commit is contained in:
sneakers-the-rat 2023-10-11 22:21:44 -07:00
parent 338369a540
commit 0d29ed279f
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,15 @@
import pytest
import warnings
def test_hold_up():
from linkml_runtime.linkml_model import SchemaDefinition, Annotation
schema = SchemaDefinition(
id='myschema',
name='myschema',
annotations=[{'tag':'my_annotation','value':True}]
)
warnings.warn('TYPE OF ANNOTATION IS')
warnings.warn(str(type(schema.annotations['my_annotation'].value)))

View file

@ -84,7 +84,6 @@ def test_linkml_build_from_yaml(tmp_output_dir):
@pytest.mark.skip()
@pytest.mark.depends(on=['test_linkml_provider'])
@pytest.mark.parametrize(