blob: 8b9a2e1343cbf77385693051d7cc176c4cfe05a9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
language: python
python:
- "3.2"
- "3.3"
# command to install dependencies
install:
- pip install -r requirements.txt --use-mirrors
- pip install coverage
# command to run tests
script: coverage run -m unittest -v tests/test_*.py && coverage report -m
|