1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-11 08:29:16 +00:00

disable debug logs on tests

This commit is contained in:
deadc0de6
2019-11-20 15:00:08 +01:00
parent e681235ea5
commit 364de92505

View File

@@ -25,6 +25,9 @@ which ${nosebin} 2>/dev/null
[ "$?" != "0" ] && echo "Install nosetests" && exit 1 [ "$?" != "0" ] && echo "Install nosetests" && exit 1
set -e set -e
# do not print debugs when running tests (faster)
export DOTDROP_FORCE_NODEBUG=yes
# execute tests with coverage # execute tests with coverage
PYTHONPATH=dotdrop ${nosebin} -s --with-coverage --cover-package=dotdrop PYTHONPATH=dotdrop ${nosebin} -s --with-coverage --cover-package=dotdrop
#PYTHONPATH=dotdrop python3 -m pytest tests #PYTHONPATH=dotdrop python3 -m pytest tests