()
| 1290 | sys.stdout.buffer.flush() |
| 1291 | |
| 1292 | def tfunc(): |
| 1293 | while not error.is_set(): |
| 1294 | try: |
| 1295 | test = q.get(block=False, timeout=-1) |
| 1296 | except Empty: |
| 1297 | return |
| 1298 | |
| 1299 | cmd = [sys.executable, "deccheck.py", "--%s" % args.time, "--single", test] |
| 1300 | p = subprocess.Popen(cmd, stdout=PIPE, stderr=STDOUT) |
| 1301 | out, _ = p.communicate() |
| 1302 | write_output(out, p.returncode) |
| 1303 | |
| 1304 | N = os.process_cpu_count() |
| 1305 | t = N * [None] |
nothing calls this directly
no test coverage detected
searching dependent graphs…