From 5018e2d35fcad9eae923f803057ad4cd22ccd9b0 Mon Sep 17 00:00:00 2001 From: Eran Kampf Date: Sat, 1 Jun 2019 14:22:17 -0700 Subject: [PATCH] Changed tox to only run Python 3.6+ --- tox.ini | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 57d1f78e..6c672705 100644 --- a/tox.ini +++ b/tox.ini @@ -1,16 +1,14 @@ [tox] -envlist = flake8,py27,py34,py35,py36,py37,pre-commit,pypy,mypy +envlist = flake8,py36,py37,pre-commit,mypy skipsdist = true [testenv] deps = .[test] - py{35,36,37}: pytest-asyncio + py{36,37}: pytest-asyncio setenv = PYTHONPATH = .:{envdir} commands = - py{27,py}: py.test --cov=graphene graphene examples {posargs} - py{35}: py.test --cov=graphene graphene examples tests_asyncio {posargs} py{36,37}: py.test --cov=graphene graphene examples tests_asyncio tests_py36 {posargs} [testenv:pre-commit]