Updates python and python-flask travis CI testing to use python 3.6, 3.7, and 3.8 (#4743)

This commit is contained in:
Justin Black
2019-12-09 19:29:14 -08:00
committed by William Cheng
parent 42f685f59c
commit 307f37c7f9
17 changed files with 40 additions and 29 deletions

View File

@@ -1 +1 @@
4.0.0
4.2.3-SNAPSHOT

View File

@@ -32,7 +32,7 @@ async def test_create_users_with_array_input(client):
Creates list of users with given input array
"""
body = []
body = [{}]
headers = {
'Content-Type': 'application/json',
}
@@ -51,7 +51,7 @@ async def test_create_users_with_list_input(client):
Creates list of users with given input array
"""
body = []
body = [{}]
headers = {
'Content-Type': 'application/json',
}