2016-12-26 03:05:11 +00:00
|
|
|
sudo: false
|
2016-10-16 05:13:25 +01:00
|
|
|
language: python
|
2017-05-17 05:21:56 +01:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- env: TOX_ENV=py36
|
|
|
|
python: 3.6
|
2019-07-13 08:50:13 +01:00
|
|
|
name: "Python 3.6 with Extensions"
|
2017-05-17 05:21:56 +01:00
|
|
|
- env: TOX_ENV=py36-no-ext
|
|
|
|
python: 3.6
|
2019-07-13 08:50:13 +01:00
|
|
|
name: "Python 3.6 without Extensions"
|
2018-07-04 06:07:08 +01:00
|
|
|
- env: TOX_ENV=py37
|
|
|
|
python: 3.7
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
2019-07-13 08:50:13 +01:00
|
|
|
name: "Python 3.7 with Extensions"
|
2018-07-04 06:07:08 +01:00
|
|
|
- env: TOX_ENV=py37-no-ext
|
|
|
|
python: 3.7
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
2019-07-13 08:50:13 +01:00
|
|
|
name: "Python 3.7 without Extensions"
|
2020-02-05 19:17:55 +00:00
|
|
|
- env: TOX_ENV=py38
|
|
|
|
python: 3.8
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
|
|
|
name: "Python 3.8 with Extensions"
|
|
|
|
- env: TOX_ENV=py38-no-ext
|
|
|
|
python: 3.8
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
|
|
|
name: "Python 3.8 without Extensions"
|
2019-09-22 21:55:36 +01:00
|
|
|
- env: TOX_ENV=type-checking
|
|
|
|
python: 3.6
|
|
|
|
name: "Python 3.6 Type checks"
|
|
|
|
- env: TOX_ENV=type-checking
|
|
|
|
python: 3.7
|
|
|
|
name: "Python 3.7 Type checks"
|
2020-02-05 19:17:55 +00:00
|
|
|
- env: TOX_ENV=type-checking
|
|
|
|
python: 3.8
|
|
|
|
name: "Python 3.8 Type checks"
|
2018-10-14 02:19:08 +01:00
|
|
|
- env: TOX_ENV=lint
|
2017-05-17 05:21:56 +01:00
|
|
|
python: 3.6
|
2019-07-13 08:50:13 +01:00
|
|
|
name: "Python 3.6 Linter checks"
|
2017-05-17 05:21:56 +01:00
|
|
|
- env: TOX_ENV=check
|
|
|
|
python: 3.6
|
2019-07-13 08:50:13 +01:00
|
|
|
name: "Python 3.6 Package checks"
|
2020-02-05 19:17:55 +00:00
|
|
|
- env: TOX_ENV=security
|
|
|
|
python: 3.6
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
|
|
|
name: "Python 3.6 Bandit security scan"
|
2019-06-23 22:20:00 +01:00
|
|
|
- env: TOX_ENV=security
|
|
|
|
python: 3.7
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
2019-07-13 08:50:13 +01:00
|
|
|
name: "Python 3.7 Bandit security scan"
|
2020-02-05 19:17:55 +00:00
|
|
|
- env: TOX_ENV=security
|
|
|
|
python: 3.8
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
|
|
|
name: "Python 3.8 Bandit security scan"
|
2019-07-13 08:50:13 +01:00
|
|
|
- env: TOX_ENV=docs
|
|
|
|
python: 3.7
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
|
|
|
name: "Python 3.7 Documentation tests"
|
2019-12-26 00:50:31 +00:00
|
|
|
- env: TOX_ENV=pyNightly
|
|
|
|
python: 'nightly'
|
|
|
|
name: "Python nightly with Extensions"
|
|
|
|
- env: TOX_ENV=pyNightly-no-ext
|
|
|
|
python: 'nightly'
|
2020-06-28 08:52:43 +01:00
|
|
|
name: "Python nightly without Extensions"
|
2019-12-26 00:50:31 +00:00
|
|
|
allow_failures:
|
|
|
|
- env: TOX_ENV=pyNightly
|
|
|
|
python: 'nightly'
|
|
|
|
name: "Python nightly with Extensions"
|
|
|
|
- env: TOX_ENV=pyNightly-no-ext
|
|
|
|
python: 'nightly'
|
2020-06-28 08:52:43 +01:00
|
|
|
name: "Python nightly without Extensions"
|
2018-10-07 05:31:04 +01:00
|
|
|
install:
|
|
|
|
- pip install -U tox
|
|
|
|
- pip install codecov
|
2018-03-02 07:16:49 +00:00
|
|
|
script: travis_retry tox -e $TOX_ENV
|
2018-10-07 05:31:04 +01:00
|
|
|
after_success:
|
|
|
|
- codecov
|
2016-10-16 09:14:09 +01:00
|
|
|
deploy:
|
|
|
|
provider: pypi
|
2019-03-22 11:44:13 +00:00
|
|
|
user: brewmaster
|
2016-10-16 09:14:09 +01:00
|
|
|
password:
|
2019-03-22 11:44:13 +00:00
|
|
|
secure: "GoawLwmbtJOgKB6AJ0ZSYUUnNwIoonseHBxaAUH3zu79TS/Afrq+yB3lsVaMSG0CbyDgN4FrfD1phT1NzbvZ1VcLIOTDtCrmpQ1kLDw+zwgF40ab8sp8fPkKVHHHfCCs1mjltHIpxQa5lZTJcAs6Bpi/lbUWWwYxFzSV8pHw4W4hY09EHUd2o+evLTSVxaploetSt725DJUYKICUr2eAtCC11IDnIW4CzBJEx6krVV3uhzfTJW0Ls17x0c6sdZ9icMnV/G9xO/eQH6RIHe4xcrWJ6cmLDNKoGAkJp+BKr1CeVVg7Jw/MzPjvZKL2/ki6Beue1y6GUIy7lOS7jPVaOEhJ23b0zQwFcLMZw+Tt+E3v6QfHk+B/WBBBnM3zUZed9UI+QyW8+lqLLt39sQX0FO0P3eaDh8qTXtUuon2jTyFMMAMTFRTNpJmpAzuBH9yeMmDeALPTh0HphI+BkoUl5q1QbWFYjjnZMH2CatApxpLybt9A7rwm//PbOG0TSI93GEKNQ4w5DYryKTfwHzRBptNSephJSuxZYEfJsmUtas5es1D7Fe0PkyjxNNSU+eO+8wsTlitLUsJO4k0jAgy+cEKdU7YJ3J0GZVXocSkrNnUfd2hQPcJ3UtEJx3hLqqr8EM7EZBAasc1yGHh36NFetclzFY24YPih0G1+XurhTys="
|
2016-10-16 09:14:09 +01:00
|
|
|
on:
|
|
|
|
tags: true
|
2017-05-02 18:47:55 +01:00
|
|
|
distributions: "sdist bdist_wheel"
|