2014-06-01 13:39:37 +02:00
|
|
|
language: python
|
2015-01-03 22:09:31 +01:00
|
|
|
|
2019-08-11 22:22:41 +02:00
|
|
|
dist: bionic
|
2018-05-19 21:28:49 +02:00
|
|
|
|
2018-12-14 23:35:48 +01:00
|
|
|
# https://devguide.python.org/#branchstatus
|
2014-06-01 13:39:37 +02:00
|
|
|
python:
|
2020-01-25 22:27:58 +01:00
|
|
|
- 3.6
|
|
|
|
- 3.7
|
|
|
|
- 3.8
|
2015-01-03 22:09:31 +01:00
|
|
|
|
2018-05-19 21:28:49 +02:00
|
|
|
install:
|
2020-01-28 17:50:53 +01:00
|
|
|
- pip install bandit flake8 python-coveralls coverage liccheck
|
2019-10-18 23:56:36 +02:00
|
|
|
- pip install -r requirements.txt
|
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
|
2019-10-18 23:56:36 +02:00
|
|
|
- liccheck -s .licenses.ini
|
2017-01-04 02:29:10 +01:00
|
|
|
- python -m feedgen
|
|
|
|
- python -m feedgen atom
|
|
|
|
- python -m feedgen rss
|
2017-02-05 14:33:22 +01:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- coveralls
|