push
circleci
2 of 8 new or added lines in 3 files covered. (25.0%)
1467 existing lines in 111 files now uncovered.16031 of 33667 relevant lines covered (47.62%)
1.21 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✔ |