[VVP] Update validations based on VNFRQTS-637
[vvp/validation-scripts.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 800b134..a4217bb 100644 (file)
--- a/tox.ini
+++ b/tox.ini
 #
 # ============LICENSE_END============================================
 #
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
 #
 
 [tox]
 skipsdist=True
-envlist = py27,py3,style
+envlist = py36
 
 [testenv]
 distribute = False
@@ -49,19 +48,13 @@ commands =
     pytest --version
     coverage run --module pytest ice_validator/tests --self-test -rxXs
     coverage xml
-deps = -rrequirements.txt
-    flake8
-    coverage
-    pytest
+    flake8 --version
+    flake8 ice_validator
+deps = --no-use-pep517 
+    -rrequirements.txt
+    flake8==3.6.0
+    coverage==4.5.1
 
-[testenv:style]
-commands = flake8 ice_validator
-
-[testenv:py27]
-basepython=python2.7
-
-[testenv:py3]
-basepython=python3.6
 
 [flake8]
 ignore = W391, W503, E501