From 02288dbcc8690a67996b0b77cae35dfd00f9db6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Tue, 30 Jan 2018 21:36:41 +0100 Subject: [PATCH] Temporarily allow failures on Python 3.7 see https://github.com/chtd/psycopg2cffi/issues/95 --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4f04c92b2..b0a56ea7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,3 +28,11 @@ env: - DATABASE_URL="postgres://postgres@localhost/mygpo_test" sudo: false + +# temporarily allow failures on 3.7 +# see https://github.com/chtd/psycopg2cffi/issues/95 +matrix: + allow_failures: + - python: "3.7-dev" + - python: "nightly" +