• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

iplweb / bpp / 58b9a630-8512-44e6-b730-daac96d1c4d7

29 Aug 2025 07:21AM UTC coverage: 47.493% (+2.5%) from 45.008%
58b9a630-8512-44e6-b730-daac96d1c4d7

push

circleci

mpasternak
Fix tests

6 of 27 new or added lines in 2 files covered. (22.22%)

1342 existing lines in 64 files now uncovered.

19323 of 40686 relevant lines covered (47.49%)

1.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

43.75
src/bpp/tests/test_views/test_password_reset.py
UNCOV
1
import pytest
1✔
UNCOV
2
from django.apps import apps
1✔
UNCOV
3
from django.core import mail
1✔
UNCOV
4
from django.urls import reverse
1✔
5

6

UNCOV
7
@pytest.mark.django_db
1✔
UNCOV
8
@pytest.mark.skipif(
1✔
9
    apps.is_installed("microsoft_auth"), reason="dziaƂa bez django_microsoft_auth"
10
)
UNCOV
11
def test_password_reset(webtest_app, normal_django_user):
1✔
12
    EMAIL = "foo@bar.pl"
×
13
    normal_django_user.email = EMAIL
×
14
    normal_django_user.save()
×
15

16
    url = reverse("password_reset")
×
17
    page = webtest_app.get(url)  # noqa
×
18
    page.forms[0]["email"] = EMAIL
×
19
    page = page.forms[0].submit().maybe_follow()
×
20

21
    assert page.status_code == 200
×
22
    assert len(mail.outbox) == 1
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc