mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 16:14:45 +00:00
52 lines
1.1 KiB
Bash
Executable File
Vendored
52 lines
1.1 KiB
Bash
Executable File
Vendored
#!/bin/sh
|
|
# author: deadc0de6 (https://github.com/deadc0de6)
|
|
# Copyright (c) 2017, deadc0de6
|
|
|
|
# stop on first error
|
|
#set -ev
|
|
set -e
|
|
|
|
rl="readlink -f"
|
|
if ! ${rl} "${0}" >/dev/null 2>&1; then
|
|
rl="realpath"
|
|
|
|
if ! hash ${rl}; then
|
|
echo "\"${rl}\" not found!" && exit 1
|
|
fi
|
|
fi
|
|
cur=$(dirname "$(${rl} "${0}")")
|
|
|
|
# make sure both version.py and manpage dotdrop.1 are in sync
|
|
dotdrop_version=$(grep version dotdrop/version.py | sed 's/^.*= .\(.*\).$/\1/g')
|
|
man_version=$(grep '^\.TH' manpage/dotdrop.1 | sed 's/^.*"dotdrop-\(.*\)\" "Save your.*$/\1/g')
|
|
if [ "${dotdrop_version}" != "${man_version}" ]; then
|
|
echo "ERROR version.py (${dotdrop_version}) and manpage (${man_version}) differ!"
|
|
exit 1
|
|
fi
|
|
echo "current dotdrop version ${dotdrop_version}"
|
|
|
|
echo "=> python version:"
|
|
python3 --version
|
|
|
|
# test syntax
|
|
echo "checking syntax..."
|
|
"${cur}"/scripts/check-syntax.sh
|
|
|
|
# test doc
|
|
echo "checking documentation..."
|
|
"${cur}"/scripts/check-doc.sh
|
|
|
|
# unittest
|
|
echo "unittest..."
|
|
"${cur}"/scripts/check-unittests.sh
|
|
|
|
# tests-ng
|
|
echo "tests-ng..."
|
|
"${cur}"/scripts/check-tests-ng.sh
|
|
|
|
# merge coverage
|
|
coverage combine
|
|
|
|
## done
|
|
echo "All tests finished successfully"
|