mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
17 lines
391 B
YAML
17 lines
391 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
# command to install dependencies
|
|
install:
|
|
- "python setup.py -q install"
|
|
- "pip install coveralls"
|
|
# 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:
|
|
python run-tests.py
|
|
|
|
after_success:
|
|
coveralls
|