2013-12-05 14:44:45 +00:00
|
|
|
language: python
|
|
|
|
python:
|
2020-06-14 18:46:34 +00:00
|
|
|
# https://endoflife.date/python
|
|
|
|
# goes away in sep 2020
|
|
|
|
- "3.5"
|
|
|
|
# goes away in dec 2021
|
2017-12-24 11:14:26 +00:00
|
|
|
- "3.6"
|
2020-06-14 18:46:34 +00:00
|
|
|
# goes away in jun 2023
|
|
|
|
- "3.7"
|
|
|
|
# goes away in oct 2024
|
|
|
|
- "3.8"
|
2013-12-05 14:44:45 +00:00
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
2020-06-14 18:46:34 +00:00
|
|
|
install:
|
2013-12-05 14:44:45 +00:00
|
|
|
- pip install requests
|
2014-06-06 21:12:59 +00:00
|
|
|
- pip install nose
|
2020-06-14 21:37:01 +00:00
|
|
|
- pip install coverage
|
|
|
|
- pip install coveralls
|
2013-12-05 14:44:45 +00:00
|
|
|
# command to run tests, e.g. python setup.py test
|
2020-06-14 21:37:01 +00:00
|
|
|
script: coverage run --source=hackertray $(which nosetests)
|
|
|
|
after_success: coveralls
|
2014-09-27 04:05:44 +00:00
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: never
|
|
|
|
on_failure: always
|