Skip to content

Commit ad34a69

Browse files
committed
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>
1 parent f89e2d3 commit ad34a69

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/system/700-artifact.bats

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
load helpers
77

8+
# FIXME #27264: Artifact store does not seem to work properly with concurrent access. Do not the ci:parallel tags here!
9+
810
function setup() {
911
basic_setup
1012
}
@@ -21,7 +23,6 @@ create_test_file() {
2123
echo "$filename"
2224
}
2325

24-
# bats test_tags=ci:parallel
2526
@test "podman artifact add --replace basic functionality" {
2627
local artifact_name="localhost/test/replace-artifact"
2728
local file1 file2
@@ -51,7 +52,6 @@ create_test_file() {
5152
rm -f "$file1" "$file2"
5253
}
5354

54-
# bats test_tags=ci:parallel
5555
@test "podman artifact add --replace nonexistent artifact" {
5656
local artifact_name="localhost/test/nonexistent-artifact"
5757
local file1
@@ -69,7 +69,6 @@ create_test_file() {
6969
rm -f "$file1"
7070
}
7171

72-
# bats test_tags=ci:parallel
7372
@test "podman artifact add --replace and --append conflict" {
7473
local artifact_name="localhost/test/conflict-artifact"
7574
local file1
@@ -83,7 +82,6 @@ create_test_file() {
8382
rm -f "$file1"
8483
}
8584

86-
# bats test_tags=ci:parallel
8785
@test "podman artifact add --replace with existing artifact" {
8886
local artifact_name="localhost/test/existing-artifact"
8987
local file1 file2

0 commit comments

Comments
 (0)