summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2016-01-22 12:19:09 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2016-01-22 12:20:54 +0100
commitf95dbb7d77c5a693022e83e30ba2a16d454e5d81 (patch)
treef4858cec86b6cc257bbf504b120a172e32a4cf27 /tox.ini
parentea4a618e8db0cd67ea22bb56af949ef6f27cc534 (diff)
downloadrsa-git-f95dbb7d77c5a693022e83e30ba2a16d454e5d81.tar.gz
Updated doctests to Python 3.5 and automatically running with Tox.
I've also removed doctests from the obsolete rsa/_versionXXX.py files, as those files aren't even compatible with Python 3.x anyway.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 5932192..f59d647 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,7 +3,6 @@ envlist = py26,py27,py33,py34,py35,pypy
[pytest]
addopts = -v --cov rsa --cov-report term-missing
-# --doctest-modules
[testenv]
setenv =
@@ -14,3 +13,6 @@ deps=pyasn1 >=0.1.3
PyTest
pytest-xdist
pytest-cov
+
+[testenv:py35]
+commands=py.test --doctest-modules []