Skip to content

Commit

Permalink
xxx
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmueller committed Oct 25, 2023
1 parent afed332 commit 2543ace
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,22 @@ def test_no_downgrade_on_install(container_per_test: ContainerData) -> None:
assert not orphaned_packages.difference(known_orphaned_packages)


@pytest.mark.skipif(
OS_VERSION == "basalt",
reason="Basalt repos are known to be out of sync with IBS state",
)
@pytest.mark.parametrize(
"container_per_test", CONTAINERS_WITH_ZYPPER, indirect=True
)
def test_container_suseconnect(container_per_test: ContainerData) -> None:
"""Check that we can register the container with container-suseconnect and all packages are installable."""

container_per_test.connection.run_expect(
[0],
"timeout 1m container-suseconnect --log-credentials-errors",
)


@pytest.mark.parametrize(
"container_per_test", CONTAINERS_WITH_ZYPPER, indirect=True
)
Expand Down

0 comments on commit 2543ace

Please sign in to comment.