Upgrade pytest to 3.6.0

https://github.com/pytest-dev/pytest/issues/1875 made it impossible to declare
a function as a fixture multiple times, which we were doing across different
modules. The fix was to move our @pytest.fixture calls into decorators in the
tests/fixtures.py module.
This commit is contained in:
Simon Willison 2018-05-31 06:40:30 -07:00
commit 969771770f
No known key found for this signature in database
GPG key ID: 17E2DEA2588B7F52
5 changed files with 15 additions and 17 deletions

View file

@ -48,7 +48,7 @@ setup(
''',
setup_requires=['pytest-runner'],
tests_require=[
'pytest==3.2.1',
'pytest==3.6.0',
'aiohttp==2.3.2',
'beautifulsoup4==4.6.0',
],