push
circleci
9 of 61 new or added lines in 6 files covered. (14.75%)
1400 existing lines in 80 files now uncovered.18330 of 34127 relevant lines covered (53.71%)
1.68 hits per line
1 |
# -*- encoding: utf-8 -*-
|
|
UNCOV
2
|
try:
|
1✔ |
UNCOV
3
|
from django.core.urlresolvers import reverse |
1✔ |
UNCOV
4
|
except ImportError: |
1✔ |
UNCOV
5
|
from django.urls import reverse |
1✔ |
6 |
|
|
UNCOV
7
|
from django.test import TestCase |
1✔ |
UNCOV
8
|
from django.test.client import Client |
1✔ |
9 |
|
|
10 |
|
|
UNCOV
11
|
class Test(TestCase): |
1✔ |
UNCOV
12
|
def setUp(self): |
1✔ |
13 |
pass
|
× |
14 |
|
|
UNCOV
15
|
def test_raport_autorow(self): |
1✔ |
16 |
c = Client() |
× |
17 |
res = c.get(reverse("bpp:raport_autorow_formularz"))
|
× |
18 |
self.assertEquals(res.status_code, 200) |
× |