Revert "Speed up Travis by reusing pip wheel cache across builds (#324)"

This reverts commit 47e689a89b.
pull/388/head
Simon Willison 2018-06-23 18:03:51 -07:00 zatwierdzone przez GitHub
rodzic 47e689a89b
commit 139a6e9e41
2 zmienionych plików z 4 dodań i 15 usunięć

Wyświetl plik

@ -7,13 +7,7 @@ python:
# Executed for 3.5 AND 3.5 as the first "test" stage:
script:
- pip install -U pip wheel
- pip install .[test]
- pytest
cache:
directories:
- $HOME/.cache/pip
- python setup.py test
# This defines further stages that execute after the tests
jobs:

Wyświetl plik

@ -47,15 +47,10 @@ setup(
datasette=datasette.cli:cli
''',
setup_requires=['pytest-runner'],
extras_require={
'test': [
'pytest==3.6.0',
'aiohttp==2.3.2',
'beautifulsoup4==4.6.0',
]
},
tests_require=[
'datasette[test]',
'pytest==3.6.0',
'aiohttp==2.3.2',
'beautifulsoup4==4.6.0',
],
classifiers=[
'Development Status :: 4 - Beta',