Compare commits

...

1 commit

Author SHA1 Message Date
Simon Willison
139a6e9e41 Revert "Speed up Travis by reusing pip wheel cache across builds (#324)"
This reverts commit 47e689a89b.
2018-06-23 18:03:51 -07:00
2 changed files with 4 additions and 15 deletions

View file

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

View file

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