Skip to content

Commit

Permalink
Stop testing against pypy
Browse files Browse the repository at this point in the history
Same as c24d7f1

marshmallow is pure python. As long as tests pass on 2.7, they
should pass on pypy, too. Testing against pypy isn't worth
the added Travis build time.
  • Loading branch information
sloria committed Oct 31, 2018
1 parent 3ca3293 commit 27af8cb
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
- { python: '3.4', env: TOXENV=py34 }
- { python: '3.5', env: TOXENV=py35 }
- { python: '3.6', env: TOXENV=py36 }
- { python: 'pypy', env: TOXENV=pypy }
- { python: '3.6', env: TOXENV=docs }

- stage: PyPI Release
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ To run syntax checks: ::

$ tox -e lint

(Optional) To run tests on Python 2.6, 2.7, 3.4, 3.5, and PyPy virtual environments (must have each interpreter installed): ::
(Optional) To run tests on Python 2.6, 2.7, 3.4, 3.5, and 3.6 virtual environments (must have each interpreter installed): ::

$ tox

Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ def read(fname):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
test_suite='tests',
project_urls={
Expand Down
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,py26,py27,py34,py35,pypy,docs
envlist = lint,py26,py27,py34,py35,docs

[testenv]
extras = tests,reco
Expand All @@ -12,9 +12,6 @@ commands = flake8 .
[testenv:py26]
commands = pytest --ignore=tests/test_py3/ {posargs}

[testenv:pypy]
commands = pytest --ignore=tests/test_py3/ {posargs}

[testenv:py27]
commands = pytest --ignore=tests/test_py3/ {posargs}

Expand Down

0 comments on commit 27af8cb

Please sign in to comment.