blob: 5419d1c193f986c97fbae16a6f2819f16497c0e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Coverage.py now supports branch coverage
- How to use it.
- Reporting
- How it works
- Odd cases
- yellow-pink syndrome:
Y if never_true:
P never_executed()
- while True is marked as yellow
- except ValueError will be marked as yellow if you never see a different exception.
- Exceptions?
- What should we do with the info about unpredicted arcs?
- Excluding. Does it work?
|