Use range for dependencies in python-flask (#3470)

This commit is contained in:
Guillaume SMAHA
2019-07-27 22:40:10 -04:00
committed by William Cheng
parent b9e863a9ca
commit 049f69c55b
13 changed files with 66 additions and 30 deletions

View File

@@ -1 +1 @@
4.0.0
4.1.0-SNAPSHOT

View File

@@ -46,7 +46,16 @@ class TestUserController(BaseTestCase):
Creates list of users with given input array
"""
user = []
user = {
"firstName" : "firstName",
"lastName" : "lastName",
"password" : "password",
"userStatus" : 6,
"phone" : "phone",
"id" : 0,
"email" : "email",
"username" : "username"
}
headers = {
'Content-Type': 'application/json',
'auth_cookie': 'special-key',
@@ -65,7 +74,16 @@ class TestUserController(BaseTestCase):
Creates list of users with given input array
"""
user = []
user = {
"firstName" : "firstName",
"lastName" : "lastName",
"password" : "password",
"userStatus" : 6,
"phone" : "phone",
"id" : 0,
"email" : "email",
"username" : "username"
}
headers = {
'Content-Type': 'application/json',
'auth_cookie': 'special-key',

View File

@@ -1,4 +1,4 @@
connexion == 2.0.2
swagger-ui-bundle == 0.0.2
python_dateutil == 2.6.0
connexion >= 2.0.2
swagger-ui-bundle >= 0.0.2
python_dateutil >= 2.6.0
setuptools >= 21.0.0