()
| 21 | |
| 22 | |
| 23 | def get_sbs_head(): |
| 24 | # Uses caching to prevent extra method calls |
| 25 | SIDE_BY_SIDE_PNG = constants.SideBySide.get_favicon() |
| 26 | head = ( |
| 27 | '<head><meta charset="utf-8">' |
| 28 | '<meta name="viewport" content="shrink-to-fit=no">' |
| 29 | '<link rel="shortcut icon" href="%s">' |
| 30 | "<title>Visual Comparison</title>" |
| 31 | "</head>" % (SIDE_BY_SIDE_PNG) |
| 32 | ) |
| 33 | return head |
| 34 | |
| 35 | |
| 36 | def get_sbs_table_row(baseline="baseline.png", diff="baseline_diff.png"): |
no test coverage detected
searching dependent graphs…