2016-12-06 07:51:32 -05:00
|
|
|
sudo: false
|
|
|
|
language: python
|
|
|
|
|
|
|
|
# tell travis to cache ~/.cache/pip
|
|
|
|
cache: pip
|
|
|
|
|
2018-10-24 08:41:31 -04:00
|
|
|
# don't clone the whole repo history, one commit will do
|
|
|
|
git:
|
|
|
|
depth: 1
|
|
|
|
|
2018-10-24 09:43:29 -04:00
|
|
|
# only build branches we care about (PRs are built seperately)
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- develop
|
2018-10-24 10:09:05 -04:00
|
|
|
- /^release-v/
|
2018-10-24 09:43:29 -04:00
|
|
|
|
2018-06-25 09:42:27 -04:00
|
|
|
before_script:
|
|
|
|
- git remote set-branches --add origin develop
|
|
|
|
- git fetch origin develop
|
|
|
|
|
2018-04-29 19:58:31 -04:00
|
|
|
matrix:
|
2018-06-25 09:42:27 -04:00
|
|
|
fast_finish: true
|
2018-04-29 19:58:31 -04:00
|
|
|
include:
|
|
|
|
- python: 2.7
|
|
|
|
env: TOX_ENV=packaging
|
|
|
|
|
2018-10-19 20:16:55 -04:00
|
|
|
- python: 3.6
|
2018-04-29 19:58:31 -04:00
|
|
|
env: TOX_ENV=pep8
|
|
|
|
|
|
|
|
- python: 2.7
|
|
|
|
env: TOX_ENV=py27
|
2018-06-25 09:42:27 -04:00
|
|
|
|
2018-09-27 09:21:54 -04:00
|
|
|
- python: 2.7
|
|
|
|
env: TOX_ENV=py27-old
|
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
- python: 2.7
|
|
|
|
env: TOX_ENV=py27-postgres TRIAL_FLAGS="-j 4"
|
2018-09-06 10:27:54 -04:00
|
|
|
services:
|
|
|
|
- postgresql
|
2018-08-13 02:47:46 -04:00
|
|
|
|
2018-09-13 13:11:11 -04:00
|
|
|
- python: 3.5
|
|
|
|
env: TOX_ENV=py35
|
|
|
|
|
2018-04-29 19:58:31 -04:00
|
|
|
- python: 3.6
|
|
|
|
env: TOX_ENV=py36
|
2016-12-06 07:51:32 -05:00
|
|
|
|
2018-09-20 06:14:34 -04:00
|
|
|
- python: 3.6
|
|
|
|
env: TOX_ENV=py36-postgres TRIAL_FLAGS="-j 4"
|
|
|
|
services:
|
|
|
|
- postgresql
|
|
|
|
|
2018-07-16 07:46:49 -04:00
|
|
|
- python: 3.6
|
2018-07-16 10:03:41 -04:00
|
|
|
env: TOX_ENV=check_isort
|
2018-07-16 07:46:49 -04:00
|
|
|
|
2018-10-24 09:49:25 -04:00
|
|
|
- # we only need to check for the newsfragment if it's a PR build
|
|
|
|
if: type = pull_request
|
|
|
|
python: 3.6
|
2018-06-25 09:42:27 -04:00
|
|
|
env: TOX_ENV=check-newsfragment
|
|
|
|
|
2016-12-06 07:51:32 -05:00
|
|
|
install:
|
|
|
|
- pip install tox
|
|
|
|
|
|
|
|
script:
|
|
|
|
- tox -e $TOX_ENV
|