From 3dc653187060f5a56f8799528dc7d2cfd5882a77 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Mon, 16 Nov 2020 17:51:12 +0100 Subject: [PATCH] disable remote links checks as it times out too often --- tests.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests.sh b/tests.sh index 54c2fba..d31ba56 100755 --- a/tests.sh +++ b/tests.sh @@ -75,18 +75,18 @@ else remark -f -u validate-links *.md fi -## test the doc with markdown-link-check -## https://github.com/tcort/markdown-link-check -set +e -which markdown-link-check >/dev/null 2>&1 -r="$?" -set -e -if [ "$r" != "0" ]; then - echo "[WARNING] install \"markdown-link-check\" to test the doc" -else - for i in `find docs -iname '*.md'`; do markdown-link-check $i; done - markdown-link-check README.md -fi +### test the doc with markdown-link-check +### https://github.com/tcort/markdown-link-check +#set +e +#which markdown-link-check >/dev/null 2>&1 +#r="$?" +#set -e +#if [ "$r" != "0" ]; then +# echo "[WARNING] install \"markdown-link-check\" to test the doc" +#else +# for i in `find docs -iname '*.md'`; do markdown-link-check $i; done +# markdown-link-check README.md +#fi ## done echo "All test finished successfully in ${SECONDS}s"