chg: set verifycert to false in tests

pull/317/head
Raphaël Vinot 2018-12-10 14:08:23 +01:00
parent 58d08889b3
commit 864aa5fe70
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,11 @@ from datetime import datetime, timedelta, date
from io import BytesIO
import time
from uuid import uuid4
try:
from keys import url, key
verifycert = False
travis_run = True
except ImportError as e:
print(e)
@ -19,8 +21,6 @@ except ImportError as e:
verifycert = False
travis_run = False
from uuid import uuid4
class TestComprehensive(unittest.TestCase):