Skip to content

Commit 4c41069

Browse files
committed
Merge pull request #35 from jhgg/pypy-py35
Add testing for py35 and pypy.
2 parents ad19f7b + 69bf12c commit 4c41069

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ python:
44
- 2.7
55
- 3.3
66
- 3.4
7+
- 3.5
8+
- pypy
79
install:
8-
- pip install pytest pytest-cov coveralls flake8
10+
- pip install pytest-cov coveralls flake8
11+
- pip install pytest>=2.7.3 --upgrade
912
- pip install -e .
1013
script:
1114
- py.test --cov=graphql

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,20 @@ def run_tests(self):
4040
'Intended Audience :: Developers',
4141
'Topic :: Software Development :: Libraries',
4242
'Programming Language :: Python :: 2',
43+
'Programming Language :: Python :: 2.7',
44+
'Programming Language :: Python :: 3',
45+
'Programming Language :: Python :: 3.3',
46+
'Programming Language :: Python :: 3.4',
47+
'Programming Language :: Python :: 3.5',
48+
'Programming Language :: Python :: Implementation :: PyPy',
4349
],
4450

4551
keywords='api graphql protocol rest',
4652

4753
packages=find_packages(exclude=['tests']),
4854

4955
install_requires=[],
50-
tests_require=['pytest>=2.7.2'],
56+
tests_require=['pytest>=2.7.3'],
5157

5258
cmdclass={'test': PyTest},
5359
)

tox.ini

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

44
[testenv]
55
deps = pytest>=2.7.2

0 commit comments

Comments
 (0)