Add testing for Python 3.6
This commit is contained in:
@@ -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
|
||||||
|
|||||||
1
setup.py
1
setup.py
@@ -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,
|
||||||
|
|||||||
2
tox.ini
2
tox.ini
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user