<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-openstackclient.git/tests/test_shell.py, branch master</title>
<subtitle>opendev.org: openstack/python-openstackclient
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/'/>
<entry>
<title>Move tests into project package.</title>
<updated>2013-07-01T03:30:54+00:00</updated>
<author>
<name>Monty Taylor</name>
<email>mordred@inaugust.com</email>
</author>
<published>2013-07-01T03:01:17+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=196daf859b1557fba24dbcf9870d3a834da86916'/>
<id>196daf859b1557fba24dbcf9870d3a834da86916</id>
<content type='text'>
There are several reasons for this. One is that the majority of
OpenStack packages behave this way. The second is that it makes writing
software that extends something easier to test (which is a clear usecase
for openstackclient) And third, tests/__init__.py implies a global
package named "tests" - which I'm pretty sure we're not providing.

Change-Id: Ic708ffd92aea78c2ffc1a8579af0587af4fca4ff
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are several reasons for this. One is that the majority of
OpenStack packages behave this way. The second is that it makes writing
software that extends something easier to test (which is a clear usecase
for openstackclient) And third, tests/__init__.py implies a global
package named "tests" - which I'm pretty sure we're not providing.

Change-Id: Ic708ffd92aea78c2ffc1a8579af0587af4fca4ff
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix flake8 errors in anticipation of flake8 patch.</title>
<updated>2013-05-14T15:28:48+00:00</updated>
<author>
<name>Monty Taylor</name>
<email>mordred@inaugust.com</email>
</author>
<published>2013-05-14T15:28:48+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=016a0b301e0ecfea5d84b09e7f1e22a86953c1c1'/>
<id>016a0b301e0ecfea5d84b09e7f1e22a86953c1c1</id>
<content type='text'>
Change-Id: Ifdc4322b699f2bd91a6900e55695acd3d736568e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ifdc4322b699f2bd91a6900e55695acd3d736568e
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct the version mapping to image service.</title>
<updated>2013-02-19T15:19:52+00:00</updated>
<author>
<name>Josh Kearney</name>
<email>josh@jk0.org</email>
</author>
<published>2013-02-18T18:58:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=237f0dd612c426abdc35b9f21c4cca040e3f4264'/>
<id>237f0dd612c426abdc35b9f21c4cca040e3f4264</id>
<content type='text'>
This was preventing image support from being activated.

Change-Id: I1b7ab9174b90c55423b244ca63402d33b4411a49
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was preventing image support from being activated.

Change-Id: I1b7ab9174b90c55423b244ca63402d33b4411a49
</pre>
</div>
</content>
</entry>
<entry>
<title>Add volume test cases and structure</title>
<updated>2013-02-11T22:10:25+00:00</updated>
<author>
<name>Steve Martinelli</name>
<email>stevemar@ca.ibm.com</email>
</author>
<published>2013-02-11T22:10:25+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=79001ce88a7c0a2197cad32ae84565822ad9b40e'/>
<id>79001ce88a7c0a2197cad32ae84565822ad9b40e</id>
<content type='text'>
add basic unit test for client
update/modify test_shell.py to include volume

Change-Id: I7d08e15a2711da5e51590b8a82eca3a1234962f8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add basic unit test for client
update/modify test_shell.py to include volume

Change-Id: I7d08e15a2711da5e51590b8a82eca3a1234962f8
</pre>
</div>
</content>
</entry>
<entry>
<title>Multiple API version support</title>
<updated>2013-02-06T17:36:28+00:00</updated>
<author>
<name>Dean Troyer</name>
<email>dtroyer@gmail.com</email>
</author>
<published>2013-02-01T01:30:25+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=fbc412e533bd7cb07c6d930e194f660e14b2319f'/>
<id>fbc412e533bd7cb07c6d930e194f660e14b2319f</id>
<content type='text'>
* Use multiple entry point groups to represent each API+version
  combination supported
* Add some tests

Try it out:
* Right now only '* user' commands have multiple overlapping versions;
  you can see the selection between v2.0 and v3 by looking at the
  command help output for 'tenant' vs 'project':

  os --os-identity-api-version=2.0 help set user
  os --os-identity-api-version=3 help set user

Change-Id: I7114fd246843df0243d354a7cce697810bb7de62
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use multiple entry point groups to represent each API+version
  combination supported
* Add some tests

Try it out:
* Right now only '* user' commands have multiple overlapping versions;
  you can see the selection between v2.0 and v3 by looking at the
  command help output for 'tenant' vs 'project':

  os --os-identity-api-version=2.0 help set user
  os --os-identity-api-version=3 help set user

Change-Id: I7114fd246843df0243d354a7cce697810bb7de62
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up test_shell so that the tests are captured though the test framework.</title>
<updated>2013-01-30T20:59:29+00:00</updated>
<author>
<name>Josh Kearney</name>
<email>josh@jk0.org</email>
</author>
<published>2013-01-30T19:56:12+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=17a87b9c0270053fc3ecfaade6606d135894e51c'/>
<id>17a87b9c0270053fc3ecfaade6606d135894e51c</id>
<content type='text'>
Also makes a small modification to gitignore.

Change-Id: Iefbfbcfd35270b06ed65edb34708fa9b4d5bf563
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also makes a small modification to gitignore.

Change-Id: Iefbfbcfd35270b06ed65edb34708fa9b4d5bf563
</pre>
</div>
</content>
</entry>
<entry>
<title>First pass at adding compute unit tests.</title>
<updated>2013-01-28T23:58:59+00:00</updated>
<author>
<name>Josh Kearney</name>
<email>josh@jk0.org</email>
</author>
<published>2013-01-24T18:33:17+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=4297e5781b03bad1c67cfdaa6cfdb73f6d1385de'/>
<id>4297e5781b03bad1c67cfdaa6cfdb73f6d1385de</id>
<content type='text'>
Change-Id: Icf3340d457f75eec89bb0e5c9b4b953c3b81020f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Icf3340d457f75eec89bb0e5c9b4b953c3b81020f
</pre>
</div>
</content>
</entry>
<entry>
<title>Standardize on a copyright header and ensure all files have them.</title>
<updated>2013-01-24T18:02:23+00:00</updated>
<author>
<name>Josh Kearney</name>
<email>josh@jk0.org</email>
</author>
<published>2013-01-24T18:00:30+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=0a4912f9fb07a7330a2527af4cc7c8949c685401'/>
<id>0a4912f9fb07a7330a2527af4cc7c8949c685401</id>
<content type='text'>
Change-Id: I64812bca01ca655c9cf9239a0daea84907082a29
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I64812bca01ca655c9cf9239a0daea84907082a29
</pre>
</div>
</content>
</entry>
<entry>
<title>Move from unittest2 to testtools</title>
<updated>2013-01-15T21:59:59+00:00</updated>
<author>
<name>Dean Troyer</name>
<email>dtroyer@gmail.com</email>
</author>
<published>2012-12-27T17:50:53+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=fe3123b802cae77cf14d161cf6460a3264e6e4c2'/>
<id>fe3123b802cae77cf14d161cf6460a3264e6e4c2</id>
<content type='text'>
Change-Id: I475a082af0660e0ee0e86ca4cd1bf0e2d711e3ed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I475a082af0660e0ee0e86ca4cd1bf0e2d711e3ed
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix PEP8 issues.</title>
<updated>2012-08-29T06:17:08+00:00</updated>
<author>
<name>lrqrun</name>
<email>lrqrun@gmail.com</email>
</author>
<published>2012-08-29T06:17:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=2372142eaa9c584ba4bb37dc80d7ee6162560a77'/>
<id>2372142eaa9c584ba4bb37dc80d7ee6162560a77</id>
<content type='text'>
Fix some pep8 issues in doc/source/conf.py and tests/test_shell.py  make the code looks pretty.

Change-Id: I927f03aff4190f1ac30eb56e7c545de555978c31
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix some pep8 issues in doc/source/conf.py and tests/test_shell.py  make the code looks pretty.

Change-Id: I927f03aff4190f1ac30eb56e7c545de555978c31
</pre>
</div>
</content>
</entry>
</feed>
