coveralls

Getting 422 error while trying to use Coveralls with GitHub actions

Getting 422 error while trying to use Coveralls with GitHub actions Question: I’m trying to set up Coveralls to work with GitHub Actions for a Python project, and although I’ve reviewed the documentation multiple times and followed all the instructions to the best of my understanding, I’m still facing the following error: Bad Response 422 …

Total answers: 1

Python Code Coverage and Multiprocessing

Python Code Coverage and Multiprocessing Question: I use coveralls in combination with coverage.py to track python code coverage of my testing scripts. I use the following commands: coverage run –parallel-mode –source=mysource –omit=*/stuff/idont/need.py ./mysource/tests/run_all_tests.py coverage combine coveralls –verbose This works quite nicely with the exception of multiprocessing. Code executed by worker pools or child processes is …

Total answers: 3