From a212f515ea8e97f4ea373458597ee4b04e9707c9 Mon Sep 17 00:00:00 2001 From: Abdullah Selek Date: Fri, 18 Jan 2019 18:24:29 +0000 Subject: [PATCH] Update CI configuration. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d67b3a5..9010829 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,14 +5,15 @@ python: - "3.4" - "3.5" - "3.6" + - "3.7-dev" - "nightly" # command to install dependencies install: - - pip install -r requirements.testing.txt + - pip install -r requirements.testing.txt --upgrade - pip install -e . # command to run tests script: - - py.test -s -v --cov-report xml --cov=authenticatorpy + - py.test -s -v --cov-report xml --cov=authenticatorpy tests/ - codecov