Skip to content

edit doc

edit doc #57

GitHub Actions / JUnit Test Report failed Sep 24, 2024 in 0s

3 tests run, 2 passed, 0 skipped, 1 failed.

Annotations

Check failure on line 66 in .mypy_cache/3.11/tests/test_shapes.data.json

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

test_shapes.test_workflow_execution

AssertionError: assert False
 +  where False = isomorphic(<Graph identifier=N871ed7ef15eb4ff4aba1185441c04913 (<class 'rdflib.graph.Graph'>)>, <Graph identifier=N398bc952b74c420fb22b7c4504f86adb (<class 'rdflib.graph.Graph'>)>)
Raw output
_setup = None

    @needs_cmem
    def test_workflow_execution(_setup: pytest.FixtureRequest) -> None:  # noqa: PT019
        """Test plugin execution"""
        ShapesPlugin(
            data_graph_iri=DATA_IRI,
            shapes_graph_iri=RESULT_IRI,
            overwrite=False,
            import_shapes=True,
            prefix_cc=True,
        ).execute(inputs=None, context=TestExecutionContext(project_id=PROJECT_NAME))
    
        result = Graph().parse(data=get(RESULT_IRI, owl_imports_resolution=False).text)
        test = Graph().parse(Path(__path__[0]) / "test_shapes.ttl", format="turtle")
>       assert isomorphic(result, test)
E       AssertionError: assert False
E        +  where False = isomorphic(<Graph identifier=N871ed7ef15eb4ff4aba1185441c04913 (<class 'rdflib.graph.Graph'>)>, <Graph identifier=N398bc952b74c420fb22b7c4504f86adb (<class 'rdflib.graph.Graph'>)>)

tests/test_shapes.py:66: AssertionError