python-feedgen/.travis.yml
Lars Kiesow edd988f8a6
Automated License Check
This patch adds a license checker to the automated tests. This ensures
that only dependencies with licenses from a list of known good licenses
are used.
2019-10-19 00:03:52 +02:00

25 lines
439 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 liccheck
- pip install -r requirements.txt
- python setup.py bdist_wheel
- pip install dist/feedgen*
script:
- make test
- liccheck -s .licenses.ini
- python -m feedgen
- python -m feedgen atom
- python -m feedgen rss
after_success:
- coveralls