mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
ci/cd - add ubuntu-jammy to known linux tests distro
This commit is contained in:
parent
2283fb5f64
commit
7dccb0be20
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ class LinuxTest(Test):
|
|||
def __init__(self, name, timeout, tests, distro, domains={}):
|
||||
super().__init__(name, "linux", timeout, tests, delay=20)
|
||||
self._domains = domains
|
||||
if distro not in ("ubuntu", "debian", "fedora", "centos") and not distro.startswith("rhel"):
|
||||
if distro not in ("ubuntu", "debian", "fedora", "centos", "ubuntu-jammy") and not distro.startswith("rhel"):
|
||||
raise Exception(f"unknown distro {distro}")
|
||||
self.__distro = distro
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue