Skip to content

Commit

Permalink
Enable builds for Python 3.7.0 (release) and pypy
Browse files Browse the repository at this point in the history
Pypy is not a supported platform (yet), so allow these builds to fail.
  • Loading branch information
Anthchirp committed Jul 5, 2018
1 parent d07cb4a commit d2792d7
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit d2792d7

Please sign in to comment.