push
circleci
5 of 8 new or added lines in 2 files covered. (62.5%)
1048 existing lines in 72 files now uncovered.16939 of 34038 relevant lines covered (49.76%)
1.25 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✔ |