python-feedgen/.travis.yml

26 lines
440 B
YAML
Raw Permalink Normal View History

language: python
dist: bionic
# https://devguide.python.org/#branchstatus
python:
- 3.6
- 3.7
- 3.8
install:
- pip install bandit flake8 python-coveralls coverage liccheck
- pip install -r requirements.txt
- python setup.py bdist_wheel
2016-06-02 04:39:54 +02:00
- 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