Skip to content
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
9 changes: 9 additions & 0 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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]
Expand Down