pipelines attempt 2

This commit is contained in:
wh1te909 2020-12-16 09:25:28 +00:00
parent 35747e937e
commit 67e7976710
1 changed files with 7 additions and 2 deletions

View File

@ -41,6 +41,11 @@ jobs:
source env/bin/activate
cd /myagent/_work/1/s/api/tacticalrmm
coverage run manage.py test -v 2
if [ $? -ne 0 ]; then
coveralls
exit 1
else
coveralls
exit 0
fi
displayName: "Run django tests"
failOnStderr: "true"