Disable sudo on Travis

This patch disables sudo on Travis to enable faster builds.
This commit is contained in:
Lars Kiesow 2018-05-19 21:28:49 +02:00
parent d6e02af098
commit 5b0a4049c6
No known key found for this signature in database
GPG key ID: 5DAFE8D9C823CE73

View file

@ -1,5 +1,7 @@
language: python language: python
sudo: false
python: python:
- "2.7" - "2.7"
- "3.3" - "3.3"
@ -7,7 +9,7 @@ python:
- "3.5" - "3.5"
- "3.6" - "3.6"
before_install: install:
- pip install flake8 python-coveralls coverage - pip install flake8 python-coveralls coverage
- python setup.py bdist_wheel - python setup.py bdist_wheel
- pip install dist/feedgen* - pip install dist/feedgen*