From 0fe62000b439a63a2a0ef820e09e355f9ef99c02 Mon Sep 17 00:00:00 2001 From: Achilles Rasquinha Date: Tue, 13 Mar 2018 10:10:29 +0530 Subject: [PATCH] added allow_failures --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d2c6089692..b1f841894c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,12 +6,18 @@ python: - "3.4" - "3.5" - "3.6" - - "3.7-dev" - "pypy3" services: - mysql +matrix: + allow_failures: + - python: "3.4" + - python: "3.5" + - python: "3.6" + - python: "pypy3" + before_script: - mysql -u root -ptravis -e 'CREATE DATABASE test_frappe' - echo "USE mysql;\nCREATE USER 'test_frappe'@'localhost' IDENTIFIED BY 'test_frappe';\nFLUSH PRIVILEGES;\n" | mysql -u root -ptravis