test/system: do not run artifact test in parallel

They do not seem safe to use concurrently, see #27264.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2025-11-07 16:57:53 +01:00
parent f89e2d3ac8
commit ad34a695de

View File

@@ -5,6 +5,8 @@
load helpers load helpers
# FIXME #27264: Artifact store does not seem to work properly with concurrent access. Do not the ci:parallel tags here!
function setup() { function setup() {
basic_setup basic_setup
} }
@@ -21,7 +23,6 @@ create_test_file() {
echo "$filename" echo "$filename"
} }
# bats test_tags=ci:parallel
@test "podman artifact add --replace basic functionality" { @test "podman artifact add --replace basic functionality" {
local artifact_name="localhost/test/replace-artifact" local artifact_name="localhost/test/replace-artifact"
local file1 file2 local file1 file2
@@ -51,7 +52,6 @@ create_test_file() {
rm -f "$file1" "$file2" rm -f "$file1" "$file2"
} }
# bats test_tags=ci:parallel
@test "podman artifact add --replace nonexistent artifact" { @test "podman artifact add --replace nonexistent artifact" {
local artifact_name="localhost/test/nonexistent-artifact" local artifact_name="localhost/test/nonexistent-artifact"
local file1 local file1
@@ -69,7 +69,6 @@ create_test_file() {
rm -f "$file1" rm -f "$file1"
} }
# bats test_tags=ci:parallel
@test "podman artifact add --replace and --append conflict" { @test "podman artifact add --replace and --append conflict" {
local artifact_name="localhost/test/conflict-artifact" local artifact_name="localhost/test/conflict-artifact"
local file1 local file1
@@ -83,7 +82,6 @@ create_test_file() {
rm -f "$file1" rm -f "$file1"
} }
# bats test_tags=ci:parallel
@test "podman artifact add --replace with existing artifact" { @test "podman artifact add --replace with existing artifact" {
local artifact_name="localhost/test/existing-artifact" local artifact_name="localhost/test/existing-artifact"
local file1 file2 local file1 file2