github
437 of 1197 branches covered (36.51%)
7 of 28 new or added lines in 14 files covered. (25.0%)
11 existing lines in 10 files now uncovered.645 of 1865 relevant lines covered (34.58%)
3.42 hits per line
1 |
import sys |
10✔ |
2 |
|
|
3 |
__all__ = [ |
10✔ |
4 |
"tomllib",
|
|
5 |
] |
|
6 |
|
|
7 |
if sys.version_info >= (3, 11): |
|
UNCOV
8
|
import tomllib |
|
9 |
else:
|
|
10 |
import tomli as tomllib |
|