feat: add test #10

Merged
jcabillot merged 7 commits from feat/test into master 2026-06-08 14:22:50 -04:00
Showing only changes of commit 97ccaee674 - Show all commits
+1 -1
View File
@@ -2,7 +2,7 @@
set -euo pipefail
IMAGE="${1:?Usage: test.sh <image>}"
CONTAINER_NAME="test-$(basename "$IMAGE")-$$"
CONTAINER_NAME="test-$(echo "$IMAGE" | tr ':/' '-')-$$"
PASSED=0
FAILED=0
TOTAL=0