fix tox error when run unittest 09/16509/1
authorsxd <shang.xiaodong@zte.com.cn>
Thu, 7 Jul 2016 07:09:15 +0000 (15:09 +0800)
committersxd <shang.xiaodong@zte.com.cn>
Thu, 7 Jul 2016 07:09:15 +0000 (15:09 +0800)
Currently when run "tox -epep8" it's ok, but it will be error when run
 "tox -epy27" or run "tox -epy34", the reason is no file .testr.conf
and .converagerc in project root directory

Change-Id: Ic6ab721738692c389d63bc2d84a4c2a21b397778
JIRA: PARSER-62
Signed-off-by: sxd <shang.xiaodong@zte.com.cn>
tosca2heat/heat-translator/.coveragerc [new file with mode: 0644]
tosca2heat/heat-translator/.testr.conf [new file with mode: 0644]
tosca2heat/tosca-parser/.coveragerc [new file with mode: 0644]
tosca2heat/tosca-parser/.testr.conf [new file with mode: 0644]

diff --git a/tosca2heat/heat-translator/.coveragerc b/tosca2heat/heat-translator/.coveragerc
new file mode 100644 (file)
index 0000000..6c9ae08
--- /dev/null
@@ -0,0 +1,7 @@
+[run]
+branch = True
+source = translator
+omit = translator/openstack/*
+
+[report]
+ignore_errors = True
diff --git a/tosca2heat/heat-translator/.testr.conf b/tosca2heat/heat-translator/.testr.conf
new file mode 100644 (file)
index 0000000..fb62267
--- /dev/null
@@ -0,0 +1,7 @@
+[DEFAULT]
+test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \
+             OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \
+             OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \
+             ${PYTHON:-python} -m subunit.run discover -t ./ . $LISTOPT $IDOPTION
+test_id_option=--load-list $IDFILE
+test_list_option=--list
\ No newline at end of file
diff --git a/tosca2heat/tosca-parser/.coveragerc b/tosca2heat/tosca-parser/.coveragerc
new file mode 100644 (file)
index 0000000..3309d46
--- /dev/null
@@ -0,0 +1,7 @@
+[run]
+branch = True
+source = toscaparser
+omit = toscaparser/openstack/*
+
+[report]
+ignore_errors = True
diff --git a/tosca2heat/tosca-parser/.testr.conf b/tosca2heat/tosca-parser/.testr.conf
new file mode 100644 (file)
index 0000000..fb62267
--- /dev/null
@@ -0,0 +1,7 @@
+[DEFAULT]
+test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \
+             OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \
+             OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \
+             ${PYTHON:-python} -m subunit.run discover -t ./ . $LISTOPT $IDOPTION
+test_id_option=--load-list $IDFILE
+test_list_option=--list
\ No newline at end of file