<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-troveclient.git/troveclient/tests/osc, branch 5.0.0</title>
<subtitle>opendev.org: openstack/python-troveclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/'/>
<entry>
<title>Flavor is optional for creating instance</title>
<updated>2020-07-26T09:57:05+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-07-25T12:40:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=c23da586e9466cf77a8fca314871b3cba58028f9'/>
<id>c23da586e9466cf77a8fca314871b3cba58028f9</id>
<content type='text'>
When creating replicas, flavor is not needed. Replica has the same
server settings as the primary.

Change-Id: Ia9b43a464763234b84ba163d8c773b21f53f4ee7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When creating replicas, flavor is not needed. Replica has the same
server settings as the primary.

Change-Id: Ia9b43a464763234b84ba163d8c773b21f53f4ee7
</pre>
</div>
</content>
</entry>
<entry>
<title>Support backup strategy</title>
<updated>2020-07-16T11:03:53+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-07-12T09:48:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=40af5562643856efad8717698511e613b4b142d4'/>
<id>40af5562643856efad8717698511e613b4b142d4</id>
<content type='text'>
Change-Id: Ic8c20109b287f2f9220379cb249669d18b52893d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ic8c20109b287f2f9220379cb249669d18b52893d
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Replace assertItemsEqual with assertCountEqual"</title>
<updated>2020-06-23T12:05:45+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2020-06-23T12:05:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=dfacd5764cc37e09ddc0b0aa4230e9af6fa1d0a2'/>
<id>dfacd5764cc37e09ddc0b0aa4230e9af6fa1d0a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support to create datastore version</title>
<updated>2020-06-10T12:13:10+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-06-10T11:47:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=b86ff27e35054f0129022a8dca08a912132973af'/>
<id>b86ff27e35054f0129022a8dca08a912132973af</id>
<content type='text'>
Change-Id: Ibc7c191a3dbbe8d03cfbc9d41e30833b47ab429f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ibc7c191a3dbbe8d03cfbc9d41e30833b47ab429f
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unnecessary API call for listing instances</title>
<updated>2020-06-10T12:09:02+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-06-10T11:22:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=6e440c35bd558f677bc76db75a0911420eab5e31'/>
<id>6e440c35bd558f677bc76db75a0911420eab5e31</id>
<content type='text'>
Change-Id: Ibd6a1ce15abc12524f49f4091acb38d6841a8476
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ibd6a1ce15abc12524f49f4091acb38d6841a8476
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace assertItemsEqual with assertCountEqual</title>
<updated>2020-06-04T12:45:32+00:00</updated>
<author>
<name>Joel Capitao</name>
<email>jcapitao@redhat.com</email>
</author>
<published>2020-06-04T12:44:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=b3f8c0b1141caad437b441bc403ce6acf241321d'/>
<id>b3f8c0b1141caad437b441bc403ce6acf241321d</id>
<content type='text'>
assertItemsEqual was removed from Python's unittest.TestCase in
Python 3.3 [1][2]. We have been able to use them since then, because
testtools required unittest2, which still included it. With testtools
removing Python 2.7 support [3][4], we will lose support for
assertItemsEqual, so we should switch to use assertCountEqual.

[1] - https://bugs.python.org/issue17866
[2] - https://hg.python.org/cpython/rev/d9921cb6e3cd
[3] - https://github.com/testing-cabal/testtools/issues/286
[4] - https://github.com/testing-cabal/testtools/pull/277

Change-Id: I444b5919817b6b5cde2165872293076aff6bf6e9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
assertItemsEqual was removed from Python's unittest.TestCase in
Python 3.3 [1][2]. We have been able to use them since then, because
testtools required unittest2, which still included it. With testtools
removing Python 2.7 support [3][4], we will lose support for
assertItemsEqual, so we should switch to use assertCountEqual.

[1] - https://bugs.python.org/issue17866
[2] - https://hg.python.org/cpython/rev/d9921cb6e3cd
[3] - https://github.com/testing-cabal/testtools/issues/286
[4] - https://github.com/testing-cabal/testtools/pull/277

Change-Id: I444b5919817b6b5cde2165872293076aff6bf6e9
</pre>
</div>
</content>
</entry>
<entry>
<title>Support role for listing instances</title>
<updated>2020-06-03T03:23:55+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-06-02T23:21:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=99126428cef64e5b985c66903d3c8444beed0f91'/>
<id>99126428cef64e5b985c66903d3c8444beed0f91</id>
<content type='text'>
Change-Id: Ia3e8d5d65bc134f3c7bc62ca9c170018be54660c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ia3e8d5d65bc134f3c7bc62ca9c170018be54660c
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove flavor API</title>
<updated>2020-05-08T06:30:49+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-04-18T11:25:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=27cf71299ec51976fed8b18dbf5c0e4f9f4fd6f5'/>
<id>27cf71299ec51976fed8b18dbf5c0e4f9f4fd6f5</id>
<content type='text'>
Change-Id: I5a35911b5658fdf6bc08844b31cc1325b749526a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I5a35911b5658fdf6bc08844b31cc1325b749526a
</pre>
</div>
</content>
</entry>
<entry>
<title>Support to change parameters for the config group</title>
<updated>2020-05-08T00:15:42+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-05-07T23:35:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=4b47eb6f7f8767331411c0323abee1c4a22cf684'/>
<id>4b47eb6f7f8767331411c0323abee1c4a22cf684</id>
<content type='text'>
* openstack database configuration parameter set &lt;config&gt; &lt;values&gt;
* openstack database configuration set &lt;config&gt; &lt;values&gt; --name NAME \
  --description DESC

Change-Id: I5a576309daa1751c76a4a0d33c53a8596c8665e8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* openstack database configuration parameter set &lt;config&gt; &lt;values&gt;
* openstack database configuration set &lt;config&gt; &lt;values&gt; --name NAME \
  --description DESC

Change-Id: I5a576309daa1751c76a4a0d33c53a8596c8665e8
</pre>
</div>
</content>
</entry>
<entry>
<title>Use unittest.mock instead of third party mock</title>
<updated>2020-04-18T16:59:46+00:00</updated>
<author>
<name>Sean McGinnis</name>
<email>sean.mcginnis@gmail.com</email>
</author>
<published>2020-04-18T16:59:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-troveclient.git/commit/?id=2b8282bb1e254e7716eab106ca8cc0d6c0097a51'/>
<id>2b8282bb1e254e7716eab106ca8cc0d6c0097a51</id>
<content type='text'>
Now that we no longer support py27, we can use the standard library
unittest.mock module instead of the third party mock lib.

Change-Id: Ib83e626f51e6e01898bb7931c1660a1a548500f3
Signed-off-by: Sean McGinnis &lt;sean.mcginnis@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that we no longer support py27, we can use the standard library
unittest.mock module instead of the third party mock lib.

Change-Id: Ib83e626f51e6e01898bb7931c1660a1a548500f3
Signed-off-by: Sean McGinnis &lt;sean.mcginnis@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
