Add top layer tox support 93/29393/3
authorJulien <zhang.jun3g@zte.com.cn>
Sun, 26 Feb 2017 14:44:45 +0000 (22:44 +0800)
committerJulien <zhang.jun3g@zte.com.cn>
Mon, 27 Feb 2017 01:16:01 +0000 (09:16 +0800)
It's easy to test each project.

Change-Id: I85f25a60a6fa90992cd0ca3b0631ffd8c4ef9685
Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
requirements.txt [new file with mode: 0644]
setup.cfg [new file with mode: 0644]
setup.py [new file with mode: 0644]
tox.ini [new file with mode: 0644]

diff --git a/requirements.txt b/requirements.txt
new file mode 100644 (file)
index 0000000..053148f
--- /dev/null
@@ -0,0 +1 @@
+tox
diff --git a/setup.cfg b/setup.cfg
new file mode 100644 (file)
index 0000000..58941f7
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,18 @@
+[metadata]
+name = parser
+summary = OPNFV Parser Project
+author = OPNFV
+author-email = opnfv-tech-discuss@lists.opnfv.org
+home-page = https://wiki.opnfv.org/display/parser
+classifier =
+    Environment :: OPNFV
+    Intended Audience :: Information Technology
+    Intended Audience :: System Administrators
+    License :: OSI Approved :: Apache Software License
+    Operating System :: POSIX :: Linux
+    Programming Language :: Python
+    Programming Language :: Python :: 2
+    Programming Language :: Python :: 2.7
+    Programming Language :: Python :: 3
+    Programming Language :: Python :: 3.5
+
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..b341513
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,4 @@
+import setuptools
+
+setuptools.setup(
+    )
diff --git a/tox.ini b/tox.ini
new file mode 100644 (file)
index 0000000..c4b1b0f
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,26 @@
+# this will used to integrate with other components in parser
+# such as verigraph
+[tox]
+minversion = 1.6
+envlist = py27,pep8
+skipsdist = True
+
+[testenv]
+usedevelop = True
+install_command = pip install -U {opts} {packages}
+setenv =
+   VIRTUAL_ENV={envdir}
+deps = -r{toxinidir}/requirements.txt
+
+[testenv:ht]
+whitelist_externals =
+    bash
+commands =
+    bash -c 'cd tosca2heat/heat-translator; tox'
+
+[testenv:tp]
+whitelist_externals =
+    bash
+commands =
+    bash -c 'cd tosca2heat/tosca-parser; tox'
+