We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46968e0 commit c372147Copy full SHA for c372147
linkcheck/tests/test_linkcheck.py
@@ -4,6 +4,7 @@
4
from unittest.mock import patch
5
6
import requests_mock
7
+import urllib3
8
from django.apps import apps
9
from django.conf import settings
10
from django.contrib.auth.models import User
@@ -349,6 +350,10 @@ def test_internal_check_media_utf8(self):
349
350
351
@override_settings(SITE_DOMAIN='example.com')
352
class ExternalCheckTestCase(LiveServerTestCase):
353
+
354
+ def setUp(self):
355
+ urllib3.disable_warnings()
356
357
def test_external_check_200(self):
358
uv = Url(url=f"{self.live_server_url}/http/200/")
359
uv.check_url()
0 commit comments