push
circleci
3598 of 4503 branches covered (79.9%)
Branch coverage included in aggregate %.
1 of 1 new or added line in 1 file covered. (100.0%)
195 existing lines in 37 files now uncovered.11229 of 12489 relevant lines covered (89.91%)
0.9 hits per line
UNCOV
1
|
from enum import Enum |
× |
2 |
|
|
3 |
|
|
UNCOV
4
|
class SENSITIVITY(Enum): |
× |
5 |
"""
|
|
6 |
Sensitivity used in sensitivity resolver |
|
7 |
""" |
|
UNCOV
8
|
ANY = 0b11
|
× |
UNCOV
9
|
RISING = 0b01
|
× |
UNCOV
10
|
FALLING = 0b10
|
× |