mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-14 15:53:28 +01:00
coverage: switch coverage reporting to codecov, enable in travis-ci and appveyor coverage: update .coveragerc to include branch, exclude NotImplementedError, __repr__ README: badge update, add appveyor, codecov badges
41 lines
629 B
YAML
41 lines
629 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
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
|
|
- pip install codecov
|
|
- 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 && cd ..
|
|
|
|
after_success:
|
|
- codecov
|
|
|