From 24973df2bbd79f21358e878f1a6a61f005c3e625 Mon Sep 17 00:00:00 2001 From: Daniel Gallagher Date: Mon, 21 May 2018 22:42:04 -0700 Subject: [PATCH] Have tox run tests under py36 --- .gitignore | 1 + setup.py | 1 + tox.ini | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 74b41897..af2acb26 100644 --- a/.gitignore +++ b/.gitignore @@ -46,6 +46,7 @@ htmlcov/ nosetests.xml coverage.xml *,cover +.pytest_cache/ # Translations *.mo diff --git a/setup.py b/setup.py index 8d69808b..5edde148 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,7 @@ def run_tests(self): 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: PyPy', 'License :: OSI Approved :: MIT License', 'Topic :: Database :: Front-Ends', diff --git a/tox.ini b/tox.ini index 215e2656..7ca780b1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = flake8,isort,py27,py33,py34,py35,pypy,docs +envlist = flake8,isort,py27,py33,py34,py35,py36,pypy,docs [testenv] deps = @@ -11,7 +11,7 @@ deps = pytest-benchmark commands = py{27,33,34,py}: py.test graphql tests {posargs} - py35: py.test graphql tests tests_py35 {posargs} + py{35,36}: py.test graphql tests tests_py35 {posargs} [testenv:flake8]