comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 """Test the recursive validation feature (validate document and try to build tool)."""
2 from cwltool.load_tool import fetch_document, recursive_resolve_and_validate_document
3
4 from .util import get_data
5
6
7 def test_recursive_validation() -> None:
8 """Test the recursive_resolve_and_validate_document function."""
9 loadingContext, workflowobj, uri = fetch_document(
10 get_data("tests/wf/default_path.cwl")
11 )
12 loadingContext, uri, tool = recursive_resolve_and_validate_document(
13 loadingContext, workflowobj, uri
14 )