python-boto3/.travis.yml

35 lines
690 B
YAML
Raw Normal View History

2015-11-27 23:25:33 +01:00
language: python
2019-01-28 22:47:44 +01:00
matrix:
include:
- python: 2.6
dist: trusty
sudo: false
- python: 2.7
dist: trusty
sudo: false
- python: 3.3
dist: trusty
sudo: false
- python: 3.4
dist: trusty
sudo: false
- python: 3.5
dist: trusty
sudo: false
- python: 3.6
dist: trusty
sudo: false
- python: 3.7
dist: xenial
sudo: true
2016-05-22 04:03:29 +02:00
before_install:
- if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
echo "No pull requests can be sent to the master branch" 1>&2;
exit 1;
fi
2015-11-27 23:25:33 +01:00
install:
- python scripts/ci/install
script: python scripts/ci/run-tests