diff --git a/docs/faq.rst b/docs/faq.rst index 958e5cf46..4a555d02c 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -561,8 +561,17 @@ can be as simple as... ~/stem$ tox ... ____ summary _____ + SKIPPED: py26: InterpreterNotFound: python2.6 py27: commands succeeded + SKIPPED: py32: InterpreterNotFound: python3.2 py33: commands succeeded + SKIPPED: py34: InterpreterNotFound: python3.4 + SKIPPED: py35: InterpreterNotFound: python3.5 + SKIPPED: py36: InterpreterNotFound: python3.6 + SKIPPED: py37: InterpreterNotFound: python3.7 + SKIPPED: jython: InterpreterNotFound: jython + SKIPPED: pypy: InterpreterNotFound: pypy + congratulations :) Tox fetches Stem's dependencies for each version of python. One of these dependencies is pycrypto which requires **python-dev** (or **python3-dev** if diff --git a/setup.py b/setup.py index 8449ce761..7c6f2f973 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ # # * Run 'run_tests.py --all --target RUN_ALL,ONLINE' with python2.6, python2.7, # python3, and pypy. +# +- or 'tox -- --all --target RUN_ALL,ONLINE' # # * Tag the release # |- Bump stem's version (in stem/__init__.py and docs/index.rst). diff --git a/tox.ini b/tox.ini index ac7af4892..daaf4130d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [tox] -envlist = py26,py27,py31,py32,py33,py34 +skip_missing_interpreters = True +envlist = py26,py27,py32,py33,py34,py35,py36,py37,jython,pypy skipsdist = True [testenv]