1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 08:04:49 +01:00
pywb/.travis.yml
Ilya Kreymer cda7705075 split and refactor: remove certauth.py / test_certauth.py and instead use this functionality from 'certauth' package. Also remove proxy-cert-auth cli as
the 'certauth' tool superceeds this functionality. (#90).
To use https proxy mode, 'pip install certauth' is required. (update travis config)
2015-03-29 17:38:57 -07:00

24 lines
329 B
YAML

language: python
python:
- "2.6"
- "2.7"
os:
- linux
- osx
sudo: false
install:
- "pip install 'argparse>=1.2.1' --allow-all-external"
- pip install certauth
- python setup.py -q install
- pip install coverage pytest-cov coveralls --use-mirrors
script:
python setup.py test
after_success:
coveralls