mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Disable urllib3 warnings
This commit is contained in:
parent
d6268f24a1
commit
77658fa0b5
1 changed files with 5 additions and 0 deletions
|
|
@ -7,6 +7,11 @@ import hypothesis.strategies as st
|
|||
|
||||
from vdirsyncer.vobject import normalize_item
|
||||
|
||||
import urllib3
|
||||
import urllib3.exceptions
|
||||
|
||||
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
||||
|
||||
|
||||
def blow_up(*a, **kw):
|
||||
raise AssertionError('Did not expect to be called.')
|
||||
|
|
|
|||
Loading…
Reference in a new issue