File tree Expand file tree Collapse file tree
atlassian_jwt_auth/contrib/tests/aiohttp Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 - " 2.7"
55 - " 3.5"
66 - " 3.6"
7+ - " 3.7"
78install :
8- - if [[ $TRAVIS_PYTHON_VERSION == 3.5 || $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install aiohttp==2.0.6 asynctest==0.10 .0; fi
9+ - if [[ $TRAVIS_PYTHON_VERSION == 3.5 || $TRAVIS_PYTHON_VERSION == 3.6 || $TRAVIS_PYTHON_VERSION == 3.7 ]]; then pip install aiohttp==3.6.2 asynctest==0.13 .0; fi
910 - pip install -q pycodestyle==2.3.1
1011script :
1112 - pycodestyle .
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def _get_session(self):
2121
2222 resp = session .get .return_value
2323 resp .headers = CIMultiDict ({"content-type" : PEM_FILE_TYPE })
24- resp .text . return_value = 'i-am-a-public-key'
24+ resp .text = CoroutineMock ( return_value = 'i-am-a-public-key' )
2525 return session
2626
2727
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ classifier =
1515 Programming Language :: Python :: 3
1616 Programming Language :: Python :: 3.5
1717 Programming Language :: Python :: 3.6
18+ Programming Language :: Python :: 3.7
1819 License :: OSI Approved :: MIT License
1920
2021[files]
Original file line number Diff line number Diff line change 11nose
22mock
33flask<1.1.0
4- Django== 1.11
4+ Django>= 1.11,<2.0.0
55atlassian-httptest==0.8
You can’t perform that action at this time.
0 commit comments