python-feedgen/.travis.yml
Lars Kiesow ca25295ac3
Update Python Versions
This patch drops tests of the rather dated Python 3.4 and 3.5 while
simultaneously adding tests for Python 3.7 and updating the build and
test environment.
2019-08-11 22:38:27 +02:00

23 lines
364 B
YAML

language: python
dist: bionic
# https://devguide.python.org/#branchstatus
python:
- "2.7"
- "3.6"
- "3.7"
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