Skip to content

Commit 24973df

Browse files
author
Daniel Gallagher
committed
Have tox run tests under py36
1 parent 2692232 commit 24973df

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ htmlcov/
4646
nosetests.xml
4747
coverage.xml
4848
*,cover
49+
.pytest_cache/
4950

5051
# Translations
5152
*.mo

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ def run_tests(self):
7171
'Programming Language :: Python :: 3.3',
7272
'Programming Language :: Python :: 3.4',
7373
'Programming Language :: Python :: 3.5',
74+
'Programming Language :: Python :: 3.6',
7475
'Programming Language :: Python :: Implementation :: PyPy',
7576
'License :: OSI Approved :: MIT License',
7677
'Topic :: Database :: Front-Ends',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = flake8,isort,py27,py33,py34,py35,pypy,docs
2+
envlist = flake8,isort,py27,py33,py34,py35,py36,pypy,docs
33

44
[testenv]
55
deps =
@@ -11,7 +11,7 @@ deps =
1111
pytest-benchmark
1212
commands =
1313
py{27,33,34,py}: py.test graphql tests {posargs}
14-
py35: py.test graphql tests tests_py35 {posargs}
14+
py{35,36}: py.test graphql tests tests_py35 {posargs}
1515

1616

1717
[testenv:flake8]

0 commit comments

Comments
 (0)