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