From 8d15bb531c7e687c9532a9e033cfd792330091c3 Mon Sep 17 00:00:00 2001 From: Michal Halenka Date: Mon, 12 Aug 2019 16:07:28 +0200 Subject: [PATCH] Update .travis.yml Add new python 3.7 release Fix indentation --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4adbe61..8166314 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,15 +2,16 @@ before_install: - sudo apt-get install -y bind9utils language: python python: - - "3.5" - - "3.6" - - "nightly" + - "3.5" + - "3.6" + - "3.7" + - "nightly" matrix: allow_failures: - python: "nightly" install: - - pip install -e . - - pip install pytest + - pip install -e . + - pip install pytest script: - - pytest + - pytest sudo: false