1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
[tox]
envlist = py26,
py27,py27ucs2,py27regex,py27ucs2regex,
py32,py32ucs2,py32regex,py32ucs2regex,
py33,py33regex,
py34,py34regex,
py35,py35regex,
py36,py36regex
[testenv]
commands = python -m doctest {posargs:-v} rfc3987.py
[testenv:py26]
basepython = python2.6
[testenv:py27]
basepython = python2.7
[testenv:py27ucs2]
basepython = python2.7ucs2
[testenv:py27regex]
basepython = python2.7
deps = regex
[testenv:py27ucs2regex]
basepython = python2.7ucs2
deps = regex
[testenv:py32]
basepython = python3.2
[testenv:py32ucs2]
basepython = python3.2ucs2
[testenv:py32regex]
basepython = python3.2
deps = regex
[testenv:py32ucs2regex]
basepython = python3.2ucs2
deps = regex
[testenv:py33]
basepython = python3.3
[testenv:py33regex]
basepython = python3.3
deps = regex
[testenv:py34]
basepython = python3.4
[testenv:py34regex]
basepython = python3.4
deps = regex
[testenv:py35]
basepython = python3.5
[testenv:py35regex]
basepython = python3.5
deps = regex
[testenv:py36]
basepython = python3.6
[testenv:py36regex]
basepython = python3.6
deps = regex
|