diff options
author | 2017-09-28 10:03:46 -0700 | |
---|---|---|
committer | 2017-09-28 10:15:49 -0700 | |
commit | 873b648ac8d3401a6f3a6e891a78a52560dd3310 (patch) | |
tree | 662d423b6dd106e8512842395fc5be242b577710 /tox.ini | |
parent | 00626231ae4dc4718121391d9a59531521bff5e7 (diff) |
initial seed code commit VVP-8
Change-Id: Iee6810d7ac98297246113e7d2c136d4dc74af41f
Signed-off-by: Paul McGoldrick <paul.mcgoldrick@att.com>
Diffstat (limited to 'tox.ini')
-rwxr-xr-x | tox.ini | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +[tox] +skipsdist=True +envlist = py27,py3,style +setupdir = jenkins/ + +[testenv] +distribute = False +commands = + {envpython} --version +deps = flake8 + +[testenv:style] +commands = flake8 + +[testenv:py27] +basepython=python2.7 + +[testenv:py3] +basepython=python3.6 |