-
-
Notifications
You must be signed in to change notification settings - Fork 456
Description
Describe the bug
Test coverage is not measured for coroutines when coverage
is run in parallel with concurrency = multiprocessing
. The following commit introduced this regression in Django: django/django@69352d8. Running coverage
without concurrency = multiprocessing
works
$ coverage run runtests.py --settings=test_sqlite3 --parallel=1
$ coverage html
when run in parallel with concurrency = multiprocessing
, coroutines are not marked as covered:
$ coverage run runtests.py --settings=test_sqlite
$ coverage combine
$ coverage html
To Reproduce
How can we reproduce the problem? Please be specific. Don't link to a failing CI job. Answer the questions below:
- What version of Python are you using?
3.10.9 and 3.11.1
- What version of coverage.py shows the problem?
7.2.1
- What versions of what packages do you have installed?
MarkupSafe-2.1.2 Pillow-9.4.0 PySocks-1.7.1 PyYAML-6.0 aiohttp-3.8.4 aiosignal-1.3.1 aiosmtpd-1.4.4.post2 argon2-cffi-21.3.0 argon2-cffi-bindings-21.2.0 asgiref-3.6.0 async-generator-1.10 async-timeout-4.0.2 atpublic-3.1.1 attrs-22.2.0 bcrypt-4.0.1 black-23.1.0 certifi-2022.12.7 cffi-1.15.1 charset-normalizer-3.1.0 click-8.1.3 docutils-0.19 exceptiongroup-1.1.1 frozenlist-1.3.3 geoip2-4.6.0 h11-0.14.0 idna-3.4 jinja2-3.1.2 maxminddb-2.2.0 multidict-6.0.4 mypy-extensions-1.0.0 numpy-1.24.2 outcome-1.2.0 packaging-23.0 pathspec-0.11.1 platformdirs-3.1.1 pycparser-2.21 pylibmc-1.6.3 pymemcache-4.0.0 pywatchman-1.4.1 redis-4.5.1 requests-2.28.2 selenium-4.8.2 sniffio-1.3.0 sortedcontainers-2.4.0 sqlparse-0.4.3 tblib-1.7.0 trio-0.22.0 trio-websocket-0.10.0 tzdata-2022.7 urllib3-1.26.15 wsproto-1.2.0 yarl-1.8.2
- What code shows the problem?
coroutines
- What commands did you run?
$ coverage run runtests.py --settings=test_sqlite
$ coverage combine
$ coverage html
Expected behavior
Test coverage is measured for coroutines.