Skip to content

Have tox run tests under py36 #179

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = flake8,isort,py27,py33,py34,py35,pre-commit,pypy,docs
envlist = flake8,isort,py27,py33,py34,py35,py36,pre-commit,pypy,docs

[testenv]
deps =
Expand All @@ -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:pre-commit]
basepython=python3.6
Expand Down