Add testing for Python 3.6

This commit is contained in:
Tim Graham
2017-02-03 09:32:14 -05:00
parent bf2c616267
commit 171e3c63a0
3 changed files with 9 additions and 0 deletions

View File

@@ -18,6 +18,12 @@ env:
global: global:
- PIP_WHEEL_DIR=$HOME/.wheels - PIP_WHEEL_DIR=$HOME/.wheels
- PIP_FIND_LINKS=file://$HOME/.wheels - PIP_FIND_LINKS=file://$HOME/.wheels
matrix:
include:
- python: 3.6
env: TOXENV=py36-django-111
- python: 3.6
env: py36-django-master
install: install:
- mkdir -p $PIP_WHEEL_DIR - mkdir -p $PIP_WHEEL_DIR
- pip wheel -r tests/requirements.txt tox coveralls - pip wheel -r tests/requirements.txt tox coveralls

View File

@@ -140,6 +140,7 @@ setup(
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
], ],
zip_safe=False, zip_safe=False,

View File

@@ -4,6 +4,7 @@ envlist =
{py27,py34}-django-{18,19,110,111} {py27,py34}-django-{18,19,110,111}
py33-django-{18} py33-django-{18}
py35-django-{18,19,110,111,master} py35-django-{18,19,110,111,master}
py36-django-{111,master}
[testenv] [testenv]
basepython = basepython =
@@ -11,6 +12,7 @@ basepython =
py33: python3.3 py33: python3.3
py34: python3.4 py34: python3.4
py35: python3.5 py35: python3.5
py36: python3.6
usedevelop = true usedevelop = true
whitelist_externals = make whitelist_externals = make
commands = make test commands = make test