1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 14:31:46 +00:00

move test helpers

This commit is contained in:
deadc0de6
2023-01-28 16:14:19 +01:00
committed by deadc0de
parent 2f663e9dc4
commit b9015528bb
5 changed files with 6 additions and 4 deletions

View File

@@ -2,6 +2,8 @@
# author: deadc0de6 (https://github.com/deadc0de6)
# Copyright (c) 2022, deadc0de6
set -e
## test doc external links
find . -type f -iname '*.md' | while read -r line; do
./scripts/check_links.py "${line}"

8
tests.sh vendored
View File

@@ -27,19 +27,19 @@ echo "current version ${dotdrop_version}"
# test syntax
echo "checking syntax..."
"${cur}"/check-syntax.sh
"${cur}"/scripts/check-syntax.sh
# test doc
echo "checking documentation..."
"${cur}"/check-doc.sh
"${cur}"/scripts/check-doc.sh
# unittest
echo "unittest..."
"${cur}"/check-unittests.sh
"${cur}"/scripts/check-unittests.sh
# tests-ng
echo "tests-ng..."
"${cur}"/check-tests-ng.sh
"${cur}"/scripts/check-tests-ng.sh
## done
echo "All tests finished successfully"