Add git review configuration file and update README

Add more project related information to README.rst.
Added default .testr.conf file

Change-Id: If47bd1d72351abf4a272ecf0eab485f64620211d
This commit is contained in:
Adrian Otto 2013-10-01 00:23:49 -07:00 committed by Swapnil Kulkarni
parent 680714a4d7
commit b79b49cee5
7 changed files with 34 additions and 7 deletions

4
.gitreview Normal file
View File

@ -0,0 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
project=stackforge/solum.git

8
.testr.conf Normal file
View File

@ -0,0 +1,8 @@
[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 ./ ./solum/tests $LISTOPT $IDOPTION
test_id_option=--load-list $IDFILE
test_list_option=--list

View File

@ -1,10 +1,13 @@
========================================
Solum - Application lifecycle Management
========================================
=====
Solum
=====
Application Lifecycle Management
An OpenStack related project designed to make cloud services easier to
consume and integrate into your application development process.
Overview
--------
Solum is natively designed for OpenStack clouds and leverages numerous
OpenStack projects, including Heat, Keystone, Nova, Trove, and more. We value
vendor neutrality, open design and collaboration, and leveraging existing
@ -16,3 +19,15 @@ in any language of your choice.
* Free software: Apache 2.0 License. See LICENSE file.
* Documentation: http://wiki.openstack.org/wiki/Solum
Project Info
-------------
* Web-site: http://solum.io/
* Source Code: http://github.com/stackforge/solum
* Wiki: https://wiki.openstack.org/wiki/Solum
* Launchpad: https://launchpad.net/solum
* Blueprints: https://blueprints.launchpad.net/solum
* Bugs: https://bugs.launchpad.net/solum
* Code Reviews: https://review.openstack.org/#q,status:open+solum,n,z
* IRC: #solum at freenode

View File

@ -19,4 +19,4 @@ import setuptools
setuptools.setup(
setup_requires=['pbr>=0.5.21,<1.0'],
pbr=True)
pbr=True)

View File

@ -17,4 +17,4 @@ import pbr.version
__version__ = pbr.version.VersionInfo(
'solum').version_string()
'solum').version_string()

View File

@ -51,4 +51,4 @@ class TestCase(testtools.TestCase):
stderr = self.useFixture(fixtures.StringStream('stderr')).stream
self.useFixture(fixtures.MonkeyPatch('sys.stderr', stderr))
self.log_fixture = self.useFixture(fixtures.FakeLogger())
self.log_fixture = self.useFixture(fixtures.FakeLogger())

View File

@ -26,4 +26,4 @@ from solum import tests
class TestSolum(tests.TestCase):
def test_something(self):
pass
pass