From d2792d75fe43cc064660b6e96576570c57d3b749 Mon Sep 17 00:00:00 2001 From: Markus Gerstel Date: Thu, 5 Jul 2018 10:41:12 +0100 Subject: [PATCH] Enable builds for Python 3.7.0 (release) and pypy Pypy is not a supported platform (yet), so allow these builds to fail. --- .travis.yml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index c3cb3cc5..7584f647 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,28 @@ +dist: trusty sudo: false # use containers language: python -python: - - "2.7" - - "3.4" - - "3.5" - - "3.6" - - "3.7-dev" + +matrix: + include: + - python: 2.7 + - python: 3.4 + - python: 3.5 + - python: 3.6 + - python: 3.7 + dist: xenial + sudo: true + - python: pypy + env: OPTIONAL=1 + + allow_failures: + - env: OPTIONAL=1 addons: mariadb: '10.2' before_install: +- mysql_upgrade -u root - mysql -u root -e "CREATE DATABASE ispybtest; SET GLOBAL log_bin_trust_function_creators=ON;" - mysql -u root -D ispybtest < conf/tables.sql - mysql -u root -D ispybtest < conf/routines.sql