Use tox release candidates in CI

Fix #2683
This commit is contained in:
Bruno Oliveira 2017-08-14 19:19:20 -03:00
parent 5c0c1977e3
commit 362b1b3c4f
2 changed files with 4 additions and 3 deletions

View File

@ -1,9 +1,10 @@
sudo: false sudo: false
language: python language: python
python: python:
- '3.5' - '3.5'
# command to install dependencies # command to install dependencies
install: "pip install -U tox" install:
- pip install --upgrade --pre tox
# # command to run tests # # command to run tests
env: env:
matrix: matrix:

View File

@ -36,7 +36,7 @@ install:
- if "%TOXENV%" == "pypy" call scripts\install-pypy.bat - if "%TOXENV%" == "pypy" call scripts\install-pypy.bat
- C:\Python35\python -m pip install tox - C:\Python35\python -m pip install --upgrade --pre tox
build: false # Not a C# project, build stuff at the test step instead. build: false # Not a C# project, build stuff at the test step instead.