Disable pytest 3.6.0 for 3.6 build

This commit is contained in:
Arun Prakash Jana 2018-05-24 08:09:56 +05:30
parent b3437a4bfb
commit 3a06404cc2
No known key found for this signature in database
GPG Key ID: A75979F35C080412

View File

@ -20,7 +20,7 @@ tests_require = [
'beautifulsoup4>=4.6.0', 'flake8>=3.4.1', 'pylint>=1.7.2', 'PyYAML>=3.12'
]
if sys.version_info.major == 3 and sys.version_info.minor == 6:
tests_require.append('pytest>=3.4.2,!=3.5.0,!=3.5.1')
tests_require.append('pytest>=3.4.2,!=3.5.0,!=3.5.1,!=3.6.0')
else:
tests_require.append('pytest>=3.4.2')