Test the released version of 3.5 instead of dev

This commit is contained in:
Donald Stufft 2015-09-14 09:26:12 -04:00
parent dca7962ff3
commit 07b4dea2c4
2 changed files with 12 additions and 5 deletions

View File

@ -13,18 +13,20 @@ matrix:
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5-dev
- python: 3.5
env: TOXENV=py35
- python: nightly
env: TOXENV=py36
- python: pypy
env: TOXENV=pypy
- python: 2.7
env: TOXENV=py27 VENDOR=no
- python: 3.4
env: TOXENV=py34 VENDOR=no
- python: 3.5
env: TOXENV=py35 VENDOR=no
- python: 2.7
env: TOXENV=py27 VENDOR=no WHEELS=yes
- python: 3.4
env: TOXENV=py34 VENDOR=no WHEELS=yes
- python: 3.5
env: TOXENV=py35 VENDOR=no WHEELS=yes
- env: TOXENV=docs
- env: TOXENV=pep8
- env: TOXENV=py3pep8

View File

@ -7,6 +7,11 @@ if [[ $TOXENV = "py35" ]]; then
export TOXARGS="--assert=plain"
fi
# If we're running under Python 3.6, we can't use anything but --asert=plain
if [[ $TOXENV = "py36" ]]; then
export TOXARGS="--assert=plain"
fi
# We want to create the virtual environment here, but not actually run anything
tox --notest