5b0a4049c6
This patch disables sudo on Travis to enable faster builds.
24 lines
339 B
YAML
24 lines
339 B
YAML
language: python
|
|
|
|
sudo: false
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip install flake8 python-coveralls coverage
|
|
- python setup.py bdist_wheel
|
|
- pip install dist/feedgen*
|
|
|
|
script:
|
|
- make test
|
|
- python -m feedgen
|
|
- python -m feedgen atom
|
|
- python -m feedgen rss
|
|
|
|
after_success:
|
|
- coveralls
|