From c65b5d1a0233be2971b08ca4a243c3d4a49b85cf Mon Sep 17 00:00:00 2001 From: Tim Buckley <timothy.jas.buckley@hp.com> Date: Mon, 3 Aug 2015 11:26:08 -0600 Subject: [PATCH] Add more test cookiecutter template items --- .coveragerc | 7 +++++++ .testr.conf | 7 +++++++ CONTRIBUTING.rst | 17 +++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 .coveragerc create mode 100644 .testr.conf create mode 100644 CONTRIBUTING.rst diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..61d239a --- /dev/null +++ b/.coveragerc @@ -0,0 +1,7 @@ +[run] +branch = True +source = stackviz +omit = stackviz/openstack/* + +[report] +ignore-errors = True diff --git a/.testr.conf b/.testr.conf new file mode 100644 index 0000000..6d83b3c --- /dev/null +++ b/.testr.conf @@ -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 diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 0000000..014d617 --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,17 @@ +If you would like to contribute to the development of OpenStack, you must +follow the steps in this page: + + http://docs.openstack.org/infra/manual/developers.html + +If you already have a good understanding of how the system works and your +OpenStack accounts are set up, you can skip to the development workflow +section of this documentation to learn how changes to OpenStack should be +submitted for review via the Gerrit tool: + + http://docs.openstack.org/infra/manual/developers.html#development-workflow + +Pull requests submitted through GitHub will be ignored. + +Bugs should be filed on Launchpad, not GitHub: + + https://bugs.launchpad.net/stackviz