test/buildah-bud: run bats in parallel

Since commit 708fe0af in buildah the tests can run in parallel, let's
enable it here to get the same speed up.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2025-02-17 13:19:29 +01:00
parent 117fd69853
commit 3de18b537e

View File

@ -262,5 +262,5 @@ review the test failure and double-check your changes.
BUILDAH_BINARY=$(pwd)/bin/buildah \
COPY_BINARY=$(pwd)/bin/copy \
INET_BINARY=$(pwd)/bin/inet \
bats "${bats_filter[@]}" tests/bud.bats)
bats -j $(nproc) "${bats_filter[@]}" tests/bud.bats)
fi