d4494151f4
The docs say that "nightly" is supported, but it's less clear exactly what our .travis.yml should say to make this happen.
16 lines
238 B
INI
16 lines
238 B
INI
[tox]
|
|
envlist = py27,pypy,py33,py34,py35,py36,flake8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
commands =
|
|
pip install --allow-all-external -e .
|
|
nosetests
|
|
passenv =
|
|
TERM
|
|
deps =
|
|
-rrequirements-dev.txt
|
|
|
|
[testenv:flake8]
|
|
commands = flake8 hy bin tests
|