Skip to content

Commit

Permalink
Update default OS versions
Browse files Browse the repository at this point in the history
Signed-off-by: Zack Cerza <[email protected]>
  • Loading branch information
zmc committed Nov 20, 2017
1 parent a8a0cd9 commit 3687a36
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
14 changes: 9 additions & 5 deletions teuthology/orchestra/opsys.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,23 @@
"6": "core",
},
"fedora": {
"21": "twenty one",
"25": "25",
"24": "24",
"23": "23",
"22": "22",
"21": "21",
"20": "heisenbug",
},
}

DEFAULT_OS_VERSION = dict(
ubuntu="16.04",
fedora="20",
centos="7.0",
fedora="25",
centos="7.4",
opensuse="12.2",
sles="11-sp2",
rhel="7.0",
debian='7.0'
rhel="7.4",
debian='8.0'
)


Expand Down
8 changes: 4 additions & 4 deletions teuthology/test/test_packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,9 @@ def test_get_distro_remote(self, matrix_index):
DISTRO_MATRIX_NOVER = [
('rhel', None, None, 'centos7'),
('centos', None, None, 'centos7'),
('fedora', None, None, 'fedora20'),
('fedora', None, None, 'fedora25'),
('ubuntu', None, None, 'xenial'),
('debian', None, None, 'wheezy'),
('debian', None, None, 'jessie'),
]

@pytest.mark.parametrize(
Expand Down Expand Up @@ -754,7 +754,7 @@ def test_get_package_sha1_fetched_not_found(self):
DISTRO_MATRIX_NOVER = [
('rhel', None, None, 'centos/7'),
('centos', None, None, 'centos/7'),
('fedora', None, None, 'fedora/20'),
('fedora', None, None, 'fedora/25'),
('ubuntu', None, None, 'ubuntu/16.04'),
('debian', None, None, 'debian/7.0'),
('debian', None, None, 'debian/8.0'),
]

0 comments on commit 3687a36

Please sign in to comment.