python-boto3/.travis.yml

17 lines
355 B
YAML
Raw Normal View History

2015-11-27 23:25:33 +01:00
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
2016-05-22 04:03:29 +02:00
- "3.5"
2015-11-27 23:25:33 +01:00
sudo: false
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