2014-06-01 13:39:37 +02:00
|
|
|
language: python
|
2015-01-03 22:09:31 +01:00
|
|
|
|
2014-06-01 13:39:37 +02:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.3"
|
2015-01-03 22:35:31 +01:00
|
|
|
- "3.4"
|
2016-06-02 03:50:48 +02:00
|
|
|
- "3.5"
|
2015-01-03 22:09:31 +01:00
|
|
|
|
2016-06-02 04:33:23 +02:00
|
|
|
before_install:
|
2017-02-05 14:33:22 +01:00
|
|
|
- pip install flake8 python-coveralls coverage
|
2016-08-29 00:22:03 +02:00
|
|
|
- python setup.py bdist_wheel
|
2016-06-02 04:39:54 +02:00
|
|
|
- pip install dist/feedgen*
|
2015-01-03 22:09:31 +01:00
|
|
|
|
2017-01-04 02:29:10 +01:00
|
|
|
script:
|
|
|
|
- make test
|
|
|
|
- python -m feedgen
|
|
|
|
- python -m feedgen atom
|
|
|
|
- python -m feedgen rss
|
2017-02-05 14:33:22 +01:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- coveralls
|