blob: b4f3a6f10d0c811983e017fce2fd3231a2b2745a [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
language: generic
sudo: required
dist: trusty
services:
- docker
addons:
apt:
sources:
- sourceline: 'ppa:deadsnakes/ppa'
packages:
- python3.6
env:
global:
- IGNORE_CERTS=true
matrix:
- TOXENV=check
matrix:
include:
# - python: '2.7'
# env:
# - TOXENV=py27,report,coveralls
# - python: '3.3'
# env:
# - TOXENV=py33,report,coveralls
# - python: '3.4'
# env:
# - TOXENV=py34,report,coveralls
# - python: '3.5'
# env:
# - TOXENV=py35,report,coveralls
- python: '3.6'
env:
- TOXENV=py36
# - python: 'pypy-5.4'
# env:
# - TOXENV=pypy,report,coveralls
before_install:
- python --version
- uname -a
install:
- sudo pip install tox
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
- source ./travis/setup.sh
script:
- tox -v
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
notifications:
email:
on_success: never
on_failure: always