experiment: can we convince Travis CI to test with nightly Python?

The docs say that "nightly" is supported, but it's less clear exactly
what our .travis.yml should say to make this happen.
This commit is contained in:
Zack M. Davis 2016-09-22 23:24:14 -07:00
parent 53353c58f2
commit d4494151f4
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: nightly
env: TOXENV=py36
env:
- TOXENV=py27
- TOXENV=py33

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,pypy,py33,py34,py35,flake8
envlist = py27,pypy,py33,py34,py35,py36,flake8
skipsdist = True
[testenv]