packaging: Fix test-all after moving tests

This commit is contained in:
Andrew Hamilton 2024-12-28 18:22:15 +10:00
parent fb354cba60
commit 418c6c0bea
2 changed files with 3 additions and 3 deletions

View file

@ -5,5 +5,5 @@ set -e
set -x
pipx install --system-site-packages "$@" ./eris
pipx install --system-site-packages "$@" .
eris --install-all-tools

View file

@ -4,9 +4,9 @@
FAILURE=0
CODEBASE_PATH=$(dirname $0)
cd ${CODEBASE_PATH}
for test in {termstr,fill3,lscolors,eris}/tests/*_test.py; do
for test in {termstr/,fill3/,lscolors/,}tests/*_test.py; do
echo "Testing $test …"
./${test} 2>&1
${test} 2>&1
FAILURE=$(($FAILURE | $?))
echo
done