fix for multiprocessing

This commit is contained in:
wh1te909 2022-04-09 01:26:04 +00:00
parent b63e87ecb6
commit 97f362ed1e
1 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,9 @@ jobs:
run: |
cd api/tacticalrmm
source ../env/bin/activate
coverage run manage.py test -v 2 --parallel
rm -f .coverage coverage.lcov
coverage run --concurrency=multiprocessing manage.py test -v 2 --parallel
coverage combine
coverage lcov
if [ $? -ne 0 ]; then
exit 1