mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Also skip the same tests on AlmaLinux 9
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
3afaeb50bd
commit
ee871927c7
1 changed files with 3 additions and 2 deletions
|
@ -118,7 +118,7 @@ def _centos_stream_9():
|
|||
(osname, osrelease, oscodename) = (
|
||||
x.strip('"').strip("'") for x in linux_distribution()
|
||||
)
|
||||
return osname == "CentOS Stream" and osrelease == "9"
|
||||
return osname in ("CentOS Stream", "AlmaLinux") and osrelease == "9"
|
||||
|
||||
|
||||
class GitPythonMixin:
|
||||
|
@ -735,7 +735,8 @@ class TestGitPythonAuthenticatedHTTP(TestGitPythonHTTP, GitPythonMixin):
|
|||
|
||||
@pytest.mark.skip_on_aarch64(reason="Test is broken on aarch64")
|
||||
@pytest.mark.skipif(
|
||||
_centos_stream_9(), reason="CentOS Stream 9 has RSA keys disabled by default"
|
||||
_centos_stream_9(),
|
||||
reason="AlmaLinux/CentOS Stream 9 has RSA keys disabled by default",
|
||||
)
|
||||
@pytest.mark.skipif(
|
||||
not HAS_PYGIT2,
|
||||
|
|
Loading…
Add table
Reference in a new issue