Staging
v0.8.1
Revision d855e53eabca0e8b2b39d25670c37bbdb4ab2e4c authored by Victor Stinner on 28 April 2017, 02:27:11 UTC, committed by GitHub on 28 April 2017, 02:27:11 UTC
QueueListenerTest of test_logging now closes the multiprocessing
Queue and joins its thread to prevent leaking dangling threads to
following tests.

Add also @support.reap_threads to detect earlier if a test leaks
threads (and try to "cleanup" these threads).
(cherry picked from commit 8ca2f2faefa8dba323a2e4c4b86efb633d7a53cf)
1 parent 0eda2d4
Raw File
.codecov.yml
codecov:
  notify:
    require_ci_to_pass: true
comment: off
ignore:
  - "Doc/**/*"
  - "Misc/*"
  - "Mac/**/*"
  - "PC/**/*"
  - "PCbuild/**/*"
  - "Tools/**/*"
  - "Grammar/*"
coverage:
  precision: 2
  range:
  - 70.0
  - 100.0
  round: down
  status:
    changes: off
    project: off
    patch:
      default:
        target: 100%
        only_pulls: true
        threshold: 0.05
parsers:
  gcov:
    branch_detection:
      conditional: true
      loop: true
      macro: false
      method: false
  javascript:
    enable_partials: false
back to top