mirror of
https://github.com/django/django.git
synced 2024-11-22 03:18:31 +01:00
070cbac0db
* Revert "Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it.""
This reverts commit 78da5ca0c1
.
* Restored coverage multiprocess concurrency with threads
Investigating https://github.com/nedbat/coveragepy/issues/1585 revealed
that thread tracing gets disabled when passing
`concurrency = multiprocessing`. Adding `thread` restores it, and
ensures that the `auser()` is reported as covered since the test suite
uses `AsyncToSync` to execute this middleware (which spawns threads).
19 lines
354 B
Plaintext
19 lines
354 B
Plaintext
# If you need to exclude files such as those generated by an IDE, use
|
|
# $GIT_DIR/info/exclude or the core.excludesFile configuration variable as
|
|
# described in https://git-scm.com/docs/gitignore
|
|
|
|
*.egg-info
|
|
*.pot
|
|
*.py[co]
|
|
.tox/
|
|
__pycache__
|
|
MANIFEST
|
|
dist/
|
|
docs/_build/
|
|
docs/locale/
|
|
node_modules/
|
|
tests/coverage_html/
|
|
tests/.coverage*
|
|
build/
|
|
tests/report/
|