push
github
8 of 9 new or added lines in 4 files covered. (88.89%)
109 existing lines in 7 files now uncovered.695 of 870 relevant lines covered (79.89%)
2.35 hits per line
1 |
class DevPool: |
3✔ |
2 |
def __init__(self, *args, **kwargs): |
3✔ |
3 |
pass
|
3✔ |
4 |
|
|
5 |
def __enter__(self): |
3✔ |
6 |
return self |
3✔ |
7 |
|
|
8 |
def map(self, func, kwargs): |
3✔ |
9 |
for kwarg in kwargs: |
× |
10 |
yield func(kwarg)
|
× |
11 |
|
|
12 |
def imap_unordered(self, func, kwargs): |
3✔ |
13 |
for kwarg in kwargs: |
3✔ |
14 |
yield func(kwarg)
|
3✔ |
15 |
|
|
16 |
def close(self): |
3✔ |
UNCOV
17
|
pass
|
× |
18 |
|
|
19 |
def join(self): |
3✔ |
UNCOV
20
|
pass
|
× |
21 |
|
|
22 |
def __exit__(self, exc_type, exc_val, exc_tb): |
3✔ |
23 |
pass
|
3✔ |