From 5d3296cc0bf5045cbbc02e2837bc3336b66c665a Mon Sep 17 00:00:00 2001 From: WebFreak001 Date: Sun, 9 Jul 2023 00:15:36 +0200 Subject: [PATCH] it: only rebuild dscanner outside CI fix windows redirects --- tests/it.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/it.sh b/tests/it.sh index 7885a9e..b216772 100755 --- a/tests/it.sh +++ b/tests/it.sh @@ -3,14 +3,17 @@ set -eu -o pipefail DSCANNER_DIR="$(dirname -- $( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ))" -dub build --root="$DSCANNER_DIR" + +if [ -z "${CI:-}" ]; then + dub build --root="$DSCANNER_DIR" +fi cd "$DSCANNER_DIR/tests" # IDE APIs # -------- # checking that reporting format stays consistent or only gets extended -diff <(jq -S . <(../bin/dscanner --report it/source_autofix.d)) <(jq -S . it/source_autofix.report.json) -diff <(jq -S . <(../bin/dscanner --resolveMessage b16 it/source_autofix.d)) <(jq -S . it/source_autofix.autofix.json) +diff <(../bin/dscanner --report it/source_autofix.d | jq -S .) <(jq -S . it/source_autofix.report.json) +diff <(../bin/dscanner --resolveMessage b16 it/source_autofix.d | jq -S .) <(jq -S . it/source_autofix.autofix.json)