mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 16:14:48 +01:00
24 lines
330 B
YAML
24 lines
330 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 pyopenssl
|
|
- python setup.py -q install
|
|
- pip install coverage pytest-cov coveralls --use-mirrors
|
|
|
|
script:
|
|
python setup.py test
|
|
|
|
after_success:
|
|
coveralls
|