push
circleci
10 of 17 new or added lines in 2 files covered. (58.82%)
1683 existing lines in 92 files now uncovered.16589 of 34516 relevant lines covered (48.06%)
1.23 hits per line
1 |
# -*- encoding: utf-8 -*-
|
|
2 |
|
|
3 |
import time |
3✔ |
4 |
|
|
5 |
from django import template |
3✔ |
6 |
|
|
7 |
from django_bpp.version import VERSION |
3✔ |
8 |
|
|
9 |
register = template.Library() |
3✔ |
10 |
|
|
11 |
|
|
12 |
@register.simple_tag
|
3✔ |
13 |
def bpp_version(): |
3✔ |
UNCOV
14
|
return VERSION
|
2✔ |
15 |
|
|
16 |
@register.simple_tag
|
3✔ |
17 |
def bpp_localtime(): |
3✔ |
UNCOV
18
|
return time.ctime()
|
2✔ |