Skip to content

Commit

Permalink
Skip the test for anything other than SLE15
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmueller committed Oct 14, 2024
1 parent a2a29e5 commit 8f3ca3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,10 @@ def test_repo_content_licensing(container_per_test) -> None:


@pytest.mark.skipif(
OS_VERSION not in ALLOWED_BCI_REPO_OS_VERSIONS,
(
OS_VERSION.startswith("15")
and OS_VERSION not in ALLOWED_BCI_REPO_OS_VERSIONS
),
reason="no included BCI repository",
)
@pytest.mark.parametrize("container_per_test", [BASE_CONTAINER], indirect=True)
Expand Down

0 comments on commit 8f3ca3a

Please sign in to comment.