github
228 of 715 branches covered (0.0%)
0 of 27 new or added lines in 1 file covered. (0.0%)
21 existing lines in 4 files now uncovered.620 of 1872 relevant lines covered (33.12%)
0.33 hits per line
1 |
import sys |
1✔ |
2 |
|
|
3 |
__all__ = [ |
1✔ |
4 |
"tomllib",
|
|
5 |
] |
|
6 |
|
|
7 |
if sys.version_info >= (3, 11): |
1✔ |
UNCOV
8
|
import tomllib |
|
9 |
else:
|
|
10 |
import tomli as tomllib |
|