From a7168ffc6e3bf2cb01c5abd46440e52a9a8de14f Mon Sep 17 00:00:00 2001 From: Dan <3498629+dan98765@users.noreply.github.com> Date: Mon, 28 May 2018 13:25:15 -0700 Subject: [PATCH] Fix: Make `tox` stop failing (#741) * Tox stopped working due to recent changes; add in necessary dependencies to tox.ini so it passes again * Run pre-commit on all files * Switch testenv deps to .[test] instead of an explicit list so the list of test deps in setup.py becomes the single source of truth for test deps. --- tox.ini | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/tox.ini b/tox.ini index 849f581c..cf538bb7 100644 --- a/tox.ini +++ b/tox.ini @@ -3,18 +3,7 @@ envlist = flake8,py27,py33,py34,py35,py36,pre-commit,pypy skipsdist = true [testenv] -deps= - pytest>=2.7.2 - graphql-core>=1.1 - promise>=2.0 - graphql-relay>=0.4.5 - six - blinker - singledispatch - mock - pytz - iso8601 - pytest-benchmark +deps = .[test] setenv = PYTHONPATH = .:{envdir} commands=