push
github
630 of 1426 branches covered (44.18%)
23 of 26 new or added lines in 1 file covered. (88.46%)
2 existing lines in 2 files now uncovered.644 of 1872 relevant lines covered (34.4%)
1.37 hits per line
1 |
import sys |
4✔ |
2 |
|
|
3 |
__all__ = [ |
4✔ |
4 |
"tomllib",
|
|
5 |
] |
|
6 |
|
|
7 |
if sys.version_info >= (3, 11): |
4✔ |
8 |
import tomllib |
|
9 |
else:
|
|
UNCOV
10
|
import tomli as tomllib |
|