aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorLianhao Lu <lianhao.lu@intel.com>2018-07-27 13:28:48 +0800
committerLianhao Lu <lianhao.lu@intel.com>2018-08-02 10:01:09 +0800
commit89649fc1d5fa2cfa73c04d53d6ff5e0a46cf2e1f (patch)
treeb88a28d15a6cc1a6278887982ce8828c67f95f63 /tox.ini
parent979471fd238cba6847c7e16400c3d8fdb4cc9711 (diff)
Make aria dependency optional
Since cloudify has announced the retirement of aria, we need to add opnfv-toscaparser as our default backend. However, since they have conflicting dependencies, we need to make aria dependency optional. Change-Id: I22bb5f7411162828226d4290fd00dfd91d49efa3 Issue-ID: VNFSDK-292 Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 17f33c7..efdc361 100644
--- a/tox.ini
+++ b/tox.ini
@@ -33,7 +33,8 @@ basepython =
[testenv:py27]
commands =
- coverage run --module pytest --junitxml xunit-results.xml
+ pip install 'apache-ariatosca==0.1.1'
+ coverage run --module pytest --junitxml xunit-results.xml tests/
coverage xml --omit=".tox/py27/*","tests/*"
coverage report --omit=".tox/py27/*","tests/*"
#pytest tests --cov-report term-missing --cov vnfsdk_pkgtools