1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00
pywb/.travis.yml
Robert Knight c38ca5cdd4 Add Python and node_module caching
Speed up Travis CI rebuilds by caching pip
and npm dependencies.
2015-11-25 14:57:51 +00:00

30 lines
439 B
YAML

language: python
python:
- "2.6"
- "2.7"
os:
- linux
cache:
directories:
- $HOME/.cache/pip
- node_modules
sudo: false
install:
- "pip install 'argparse>=1.2.1' --allow-all-external"
- pip install boto certauth
- python setup.py -q install
- pip install coverage pytest-cov coveralls --use-mirrors
- npm install
script:
- python setup.py test
- cd karma-tests && make test
after_success:
coveralls