From 42a2e5dac438fc8ebaa74b9f42c4134c947f05d1 Mon Sep 17 00:00:00 2001 From: minto Date: Sat, 24 Mar 2018 20:50:13 +0100 Subject: [PATCH] remove python 2 and 3.4 from supported by travis --- .travis.yml | 2 -- tests/conftest.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 301e627..232ced4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: python python: - - 2.7 - - 3.4 - 3.5 - 3.6 diff --git a/tests/conftest.py b/tests/conftest.py index 05926eb..7aadd36 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -14,7 +14,7 @@ @fixture def client(): - app, solver = create_app() + app, socketio, tsp = create_app() client = app.test_client() with app.app_context(): yield client