2014-01-23 16:20:51 -08:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
# command to install dependencies
|
|
|
|
install:
|
|
|
|
- "python setup.py -q install"
|
2014-02-24 23:43:32 -08:00
|
|
|
- "pip install coveralls"
|
2014-01-23 16:20:51 -08:00
|
|
|
# command to run tests
|
2014-02-01 00:12:11 -08:00
|
|
|
#script: nosetests --with-doctest
|
2014-02-12 13:16:07 -08:00
|
|
|
#script: py.test run-tests.py ./pywb/ --doctest-modules --ignore=setup.py
|
2014-02-24 23:43:32 -08:00
|
|
|
#script: py.test -v --doctest-module ./tests/*.py ./pywb/
|
|
|
|
script:
|
2014-02-24 23:45:37 -08:00
|
|
|
python run-tests.py
|
2014-02-24 23:43:32 -08:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
coveralls
|