2015-08-07 13:17:07 +00:00
|
|
|
sudo: required
|
|
|
|
|
2013-07-03 20:46:46 +00:00
|
|
|
language: python
|
2015-08-07 13:17:07 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
2017-01-03 23:57:35 +00:00
|
|
|
- python: 3.6
|
2016-05-21 17:24:18 +00:00
|
|
|
os: linux
|
2016-05-21 17:29:04 +00:00
|
|
|
dist: trusty
|
2016-05-21 17:24:18 +00:00
|
|
|
env: TOXENV=py36
|
2018-06-30 19:02:19 +00:00
|
|
|
- python: 3.6
|
2016-01-30 21:03:09 +00:00
|
|
|
os: linux
|
2016-05-21 17:29:04 +00:00
|
|
|
dist: trusty
|
2016-01-30 21:03:09 +00:00
|
|
|
env: TOXENV=flake8
|
2017-03-07 04:07:51 +00:00
|
|
|
- python: "3.6-dev"
|
|
|
|
os: linux
|
|
|
|
dist: trusty
|
|
|
|
env: TOXENV=py36
|
2017-01-03 23:57:35 +00:00
|
|
|
- language: generic
|
|
|
|
os: osx
|
2018-05-07 15:51:39 +00:00
|
|
|
osx_image: xcode8.3
|
2017-01-03 23:57:35 +00:00
|
|
|
env: TOXENV=py36
|
2015-08-07 13:17:07 +00:00
|
|
|
|
2017-06-18 14:48:26 +00:00
|
|
|
before_install:
|
|
|
|
- |
|
2017-08-24 14:24:44 +00:00
|
|
|
test $TRAVIS_EVENT_TYPE != "pull_request" || {
|
|
|
|
echo Checking whether $TRAVIS_COMMIT_RANGE changed only docs
|
|
|
|
git diff --name-only $TRAVIS_COMMIT_RANGE | grep --quiet --invert-match --extended-regexp '(AUTHORS|README\.rst|^(docs)/)' || {
|
|
|
|
echo "Only docs were updated, stopping build process."
|
|
|
|
exit
|
|
|
|
}
|
2017-06-18 14:48:26 +00:00
|
|
|
}
|
|
|
|
|
2013-07-03 20:46:46 +00:00
|
|
|
install:
|
2017-04-01 16:25:45 +00:00
|
|
|
- git fetch --unshallow --tags
|
2015-08-07 13:17:07 +00:00
|
|
|
- ./.travis/install.sh
|
|
|
|
|
|
|
|
script:
|
|
|
|
- ./.travis/run.sh
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- ./.travis/upload_coverage.sh
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#borgbackup"
|
|
|
|
use_notice: true
|
|
|
|
skip_join: true
|