Merge pull request #27 from glyph/ci36

add python 3.6 support
This commit is contained in:
Glyph 2020-04-04 17:30:44 -07:00 committed by GitHub
commit ec253711f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View file

@ -10,14 +10,13 @@ matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.3"
env: TOXENV=py33
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
allow_failures:
- env: TOXENV=py33
- env: TOXENV=py34
- env: TOXENV=py35

View file

@ -1,9 +1,9 @@
[tox]
envlist = py26,py27,py33,py34,py35
envlist = py26,py27,py34,py35,py36
skipsdist = true
[testenv]
commands = python test_docstring_wrap.py
deps =
py26: unittest2
py26: unittest2