From f2dc567bcd00a3e8a4d61e10b5d89fc0454cb844 Mon Sep 17 00:00:00 2001 From: Edouard Vanbelle Date: Tue, 30 Jun 2026 23:21:19 +0200 Subject: [PATCH] chore(justfile): api-test: add litmus webdav play listmus webdav test only if found locally --- justfile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 89e59729..35e78e6d 100644 --- a/justfile +++ b/justfile @@ -172,9 +172,17 @@ front-design: # .github/workflows/ci.yml; keep the order in sync so a local pass means # CI passes. api-test: - bash tests/api/run.sh - bash tests/webdav/run.sh - bash tests/oidc/run.sh + #!/usr/bin/env bash + set -euo pipefail + ./tests/api/run.sh + ./tests/webdav/run.sh + ./tests/oidc/run.sh + if which litmus >/dev/null 2>/dev/null + then + ./tests/webdav/run-litmus.sh + else + echo "XXX litmus webdav not found, ignore test" + fi # --------------------------------------------------------------------------- # SvelteKit frontend (frontend/) — the only frontend. These `fe-*` recipes