1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00
pywb/.travis.yml
2014-03-04 19:11:17 -08:00

19 lines
518 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "pypy"
# command to install dependencies
install:
- python setup.py -q install
- pip install coverage pytest-cov coveralls --use-mirrors --allow-external
# command to run tests
#script: nosetests --with-doctest
#script: py.test run-tests.py ./pywb/ --doctest-modules --ignore=setup.py
#script: py.test -v --doctest-module ./tests/*.py ./pywb/
script:
py.test --cov-config .coveragerc --cov pywb -v --doctest-module ./pywb/ tests/
after_success:
coveralls