packaging: Fix test-all after moving tests
This commit is contained in:
parent
fb354cba60
commit
418c6c0bea
2 changed files with 3 additions and 3 deletions
2
install
2
install
|
|
@ -5,5 +5,5 @@ set -e
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
|
||||||
pipx install --system-site-packages "$@" ./eris
|
pipx install --system-site-packages "$@" .
|
||||||
eris --install-all-tools
|
eris --install-all-tools
|
||||||
|
|
|
||||||
4
test-all
4
test-all
|
|
@ -4,9 +4,9 @@
|
||||||
FAILURE=0
|
FAILURE=0
|
||||||
CODEBASE_PATH=$(dirname $0)
|
CODEBASE_PATH=$(dirname $0)
|
||||||
cd ${CODEBASE_PATH}
|
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 …"
|
echo "Testing $test …"
|
||||||
./${test} 2>&1
|
${test} 2>&1
|
||||||
FAILURE=$(($FAILURE | $?))
|
FAILURE=$(($FAILURE | $?))
|
||||||
echo
|
echo
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue