blob: c1e7abe0b44a89c167a79cac33cfc9c4c79ed8e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- nightly
- pypy
# - pypy3
install:
- pip install -U pip setuptools wheel
- pip install -r requirements/development.txt .
script:
- coverage run setup.py test
- coverage report --show-missing
after_success:
- coveralls
|