mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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
|
from vdirsyncer.vobject import normalize_item
|
||||||
|
|
||||||
|
import urllib3
|
||||||
|
import urllib3.exceptions
|
||||||
|
|
||||||
|
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
||||||
|
|
||||||
|
|
||||||
def blow_up(*a, **kw):
|
def blow_up(*a, **kw):
|
||||||
raise AssertionError('Did not expect to be called.')
|
raise AssertionError('Did not expect to be called.')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue