We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e06938 commit 8ce23bcCopy full SHA for 8ce23bc
tests/test_dependencies.py
@@ -49,12 +49,9 @@ 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"
57
+ assert get_container_from_software_requirements(
+ True, tool, container_image_cache_path=str(tmp_path)
+ ).startswith("quay.io/biocontainers/seqtk:1.4--")
58
59
60
@pytest.fixture(scope="session")
0 commit comments