pudb/.travis.yml
2017-04-08 17:36:00 -05:00

21 lines
306 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.5"
- "3.6"
# command to install dependencies
install:
- "pip install -r requirements.dev.txt"
- "pip install -e ."
# command to run tests
script:
- "(cd test && pytest --cov=pudb)"
after_success:
- bash upload_coverage.sh
sudo: false