From 6c15d4263bc292c0e8911ec08bdbc8c8316e3f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Sun, 2 Jun 2024 16:43:20 +0200 Subject: [PATCH] Update OS versions in bats package tests (#310) --- packages/test/centos.bats | 4 ---- packages/test/fedora.bats | 12 ++++-------- packages/test/opensuse.bats | 4 ---- packages/test/ubuntu.bats | 12 ++++-------- 4 files changed, 8 insertions(+), 24 deletions(-) diff --git a/packages/test/centos.bats b/packages/test/centos.bats index 1949bb5e..47fc6408 100644 --- a/packages/test/centos.bats +++ b/packages/test/centos.bats @@ -3,7 +3,3 @@ @test "CentOS 8 Stream" { ./test-install-on-docker.sh quay.io/centos/centos:stream8 } - -@test "CentOS 7" { - ./test-install-on-docker.sh centos:7 -} diff --git a/packages/test/fedora.bats b/packages/test/fedora.bats index fb7158bd..94d474c1 100644 --- a/packages/test/fedora.bats +++ b/packages/test/fedora.bats @@ -4,14 +4,10 @@ ./test-install-on-docker.sh fedora:rawhide } -@test "Fedora 39" { - ./test-install-on-docker.sh fedora:39 -} - -@test "Fedora 38" { - ./test-install-on-docker.sh fedora:38 +@test "Fedora 40" { + ./test-install-on-docker.sh fedora:40 } -@test "Fedora 37" { - ./test-install-on-docker.sh fedora:37 +@test "Fedora 39" { + ./test-install-on-docker.sh fedora:39 } diff --git a/packages/test/opensuse.bats b/packages/test/opensuse.bats index 69a2b249..7fc22996 100644 --- a/packages/test/opensuse.bats +++ b/packages/test/opensuse.bats @@ -7,7 +7,3 @@ @test "openSUSE Leap 15.5" { ./test-install-on-docker.sh opensuse/leap:15.5 } - -@test "openSUSE Leap 15.4" { - ./test-install-on-docker.sh opensuse/leap:15.4 -} diff --git a/packages/test/ubuntu.bats b/packages/test/ubuntu.bats index f05f4a1d..cd20ae9f 100644 --- a/packages/test/ubuntu.bats +++ b/packages/test/ubuntu.bats @@ -1,11 +1,11 @@ #!/usr/bin/env bats -@test "Ubuntu 23.10" { - ./test-install-on-docker.sh ubuntu:23.10 +@test "Ubuntu 24.04 LTS" { + ./test-install-on-docker.sh ubuntu:24.04 } -@test "Ubuntu 23.04" { - ./test-install-on-docker.sh ubuntu:23.04 +@test "Ubuntu 23.10" { + ./test-install-on-docker.sh ubuntu:23.10 } @test "Ubuntu 22.04" { @@ -15,7 +15,3 @@ @test "Ubuntu 20.04" { ./test-install-on-docker.sh ubuntu:20.04 } - -@test "Ubuntu 18.04" { - ./test-install-on-docker.sh ubuntu:18.04 -}