Because: 1. It is old. VERY old. 2. Some useful methods (`assertRaisesRegexp`, `assertIsInstance`) are only available from Python 2.7.
18 lines
274 B
YAML
18 lines
274 B
YAML
---
|
|
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.3
|
|
- 3.4
|
|
- 3.5
|
|
- nightly
|
|
install:
|
|
- pip install pyyaml flake8 coveralls
|
|
- pip install .
|
|
script:
|
|
- flake8 .
|
|
- yamllint $(git ls-files '*.yml')
|
|
- coverage run --source=yamllint setup.py test
|
|
after_success:
|
|
coveralls
|