push
github
631 of 1448 branches covered (0.0%)
0 of 2 new or added lines in 1 file covered. (0.0%)
2 existing lines in 2 files now uncovered.628 of 1856 relevant lines covered (33.84%)
1.35 hits per line
1 |
import sys |
4✔ |
2 |
|
|
3 |
__all__ = [ |
4✔ |
4 |
"tomllib",
|
|
5 |
] |
|
6 |
|
|
7 |
if sys.version_info >= (3, 11): |
4✔ |
UNCOV
8
|
import tomllib |
|
9 |
else:
|
|
10 |
import tomli as tomllib |
|