1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00
pywb/.travis.yml
Ilya Kreymer e86e3e6d32 build process: simplify build process by moving essential deps to requirements.txt, and extras to extra_requirements.txt
setup.py just loads from requirements.txt
Dockerfile pip installs requirements, then extra requirements for improved cacheing
travis runs setup install, then installs extra requirements
2017-03-08 17:05:29 -08:00

38 lines
587 B
YAML

language: python
python:
- "2.7"
- "3.5"
os:
- linux
addons:
sauce_connect: true
cache:
directories:
- $HOME/.cache/pip
- node_modules
sudo: false
install:
#- pip install boto certauth youtube-dl
#- pip install git+https://github.com/esnme/ultrajson.git
- python setup.py -q install
- pip install -r extra_requirements.txt
- pip install coverage pytest-cov coveralls
- npm install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- python setup.py test
- cd karma-tests && make test
after_success:
coveralls