view env/lib/python3.9/site-packages/cwltool/tests/test_recursive_validation.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
line wrap: on
line source

"""Test the recursive validation feature (validate document and try to build tool)."""
from cwltool.load_tool import fetch_document, recursive_resolve_and_validate_document

from .util import get_data


def test_recursive_validation() -> None:
    """Test the recursive_resolve_and_validate_document function."""
    loadingContext, workflowobj, uri = fetch_document(
        get_data("tests/wf/default_path.cwl")
    )
    loadingContext, uri, tool = recursive_resolve_and_validate_document(
        loadingContext, workflowobj, uri
    )