diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 907caa74..d9d83031 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -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