We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 054acd0 commit e5d9fe6Copy full SHA for e5d9fe6
tests/test_dependencies.py
@@ -49,12 +49,10 @@ def test_biocontainers(tmp_path: Path) -> None:
49
def test_biocontainers_resolution(tmp_path: Path) -> None:
50
"""Confirm expected container name for --beta-use-biocontainers."""
51
tool = load_tool(get_data("tests/seqtk_seq.cwl"), LoadingContext())
52
- assert (
53
- get_container_from_software_requirements(
54
- True, tool, container_image_cache_path=str(tmp_path)
55
- )
56
- == "quay.io/biocontainers/seqtk:1.4--he4a0461_1"
+ container = get_container_from_software_requirements(
+ True, tool, container_image_cache_path=str(tmp_path)
57
)
+ assert container is not None and container.startswith("quay.io/biocontainers/seqtk:1.4--")
58
59
60
@pytest.fixture(scope="session")
0 commit comments