tox: Use the default version of Python 3 for tox tests

When running the tox tests, use the default version of Python 3. Instead
of having to update the Python 3 version as we move from
    py34 -> py35 -> py36 -> py37 -> py38

Just use the default version of Python 3 on the system.

This will not affect what gets run in the gate, as the version is
explicitly specified when it runs there. This is for developers who run
the tests locally.

Change-Id: I775712a592bcdc01a6d0373d42971a8a53616112
This commit is contained in:
John L. Villalovos 2017-12-11 07:29:39 -08:00
parent 5d1d7c4cc7
commit 7e578f1570
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[tox]
minversion = 1.8
skipsdist = True
envlist = py35,py27,pep8
envlist = py3,py27,pep8
[testenv]
install_command = pip install {opts} {packages}