aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorLovett, Trevor <trevor.lovett@att.com>2019-01-29 14:14:44 -0600
committerLovett, Trevor <trevor.lovett@att.com>2019-01-29 14:43:23 -0600
commit961f572383ff3398bcafc802682b92f23f8ab1fe (patch)
treeda3f9d5e912c2ef27b98fc9c0cd2bb098670dc44 /tox.ini
parent48a07b6942d3956666d30947372653feb702fdae (diff)
[VVP] Removing dynamic download of needs.json
Also resolving some flake8 failures Change-Id: I2de20975106de0308bc20c2a8944e3552f6f7cca Issue-ID: VVP-140 Signed-off-by: Lovett, Trevor <trevor.lovett@att.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 4 insertions, 8 deletions
diff --git a/tox.ini b/tox.ini
index 34ba2cd..305378c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -40,26 +40,22 @@
[tox]
skipsdist=True
-envlist = py36,style
+envlist = py36
[testenv]
distribute = False
-basepython = python3.6
commands =
{envpython} --version
pytest --version
coverage run --module pytest ice_validator/tests --self-test -rxXs
coverage xml
+ flake8 --version
+ flake8 ice_validator
deps = --no-use-pep517
-rrequirements.txt
- flake8==3.4.1
+ flake8==3.6.0
coverage==4.5.1
-[testenv:style]
-commands = flake8 ice_validator
-
-[testenv:py36]
-basepython=python3.6
[flake8]
ignore = W391, W503, E501