python-feedgen/.travis.yml
Lars Kiesow 4314475bfb
Extended test Coverage
This patch extends the test coverage of the unit tests. It also enables
python-coverage and coveralls to track unit test coverage.

There are some additional minor issue fixed discovered during the test
creation.

Signed-off-by: Lars Kiesow <lkiesow@uos.de>
2017-02-05 22:03:02 +01:00

21 lines
323 B
YAML

language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_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