ansible-test - Enable thread code coverage (#81604)

ci_complete
ci_coverage
pull/81607/head
Matt Clay 9 months ago committed by GitHub
parent 261e5ce381
commit e1e0e2709c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
minor_changes:
- ansible-test - Enable ``thread`` code coverage in addition to the existing ``multiprocessing`` coverage.

@ -251,7 +251,9 @@ def generate_ansible_coverage_config() -> str:
coverage_config = '''
[run]
branch = True
concurrency = multiprocessing
concurrency =
multiprocessing
thread
parallel = True
omit =
@ -272,7 +274,9 @@ def generate_collection_coverage_config(args: TestConfig) -> str:
coverage_config = '''
[run]
branch = True
concurrency = multiprocessing
concurrency =
multiprocessing
thread
parallel = True
disable_warnings =
no-data-collected

Loading…
Cancel
Save