<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-heatclient.git/heatclient/tests/functional, branch stable/train</title>
<subtitle>opendev.org: openstack/python-heatclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/'/>
<entry>
<title>Ignore not found when delete in test</title>
<updated>2019-09-20T19:36:27+00:00</updated>
<author>
<name>ricolin</name>
<email>rico.lin@easystack.cn</email>
</author>
<published>2018-02-07T07:44:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=dd6560f9618662198e25b298804742177db70e13'/>
<id>dd6560f9618662198e25b298804742177db70e13</id>
<content type='text'>
Ignore not found when delete stack or stack snapshot in tests.
Story: #1737100
Task: #19354

Change-Id: I6c980b68023b33dc318c5d9506c2cac5866c4924
(cherry picked from commit 3b74f2ddd1cb624b98264426509200da00ea3745)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ignore not found when delete stack or stack snapshot in tests.
Story: #1737100
Task: #19354

Change-Id: I6c980b68023b33dc318c5d9506c2cac5866c4924
(cherry picked from commit 3b74f2ddd1cb624b98264426509200da00ea3745)
</pre>
</div>
</content>
</entry>
<entry>
<title>Add heat CLI test for stack-show</title>
<updated>2018-03-26T22:12:58+00:00</updated>
<author>
<name>Georgy Dyuldin</name>
<email>g.dyuldin@gmail.com</email>
</author>
<published>2016-10-26T08:54:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=08a925f18403ebb561775c4a589bab7f04d3b465'/>
<id>08a925f18403ebb561775c4a589bab7f04d3b465</id>
<content type='text'>
Change-Id: I35b17be14438e6de6fffd0396bab9989ef812a2a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I35b17be14438e6de6fffd0396bab9989ef812a2a
</pre>
</div>
</content>
</entry>
<entry>
<title>Use generic user for both zuul v2 and v3</title>
<updated>2017-10-17T07:27:32+00:00</updated>
<author>
<name>Nam Nguyen Hoai</name>
<email>namnh@vn.fujitsu.com</email>
</author>
<published>2017-10-18T06:54:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=046fbf8aa36abd5cbeb68eb63d5f69db31243c2d'/>
<id>046fbf8aa36abd5cbeb68eb63d5f69db31243c2d</id>
<content type='text'>
Zuul v2 uses 'jenkins' as user, but Zuul v3 uses 'zuul'.
Using $USER solves it for both cases.

Change-Id: If6b023e3be4a4555b656660a8522271668496ead
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Zuul v2 uses 'jenkins' as user, but Zuul v3 uses 'zuul'.
Using $USER solves it for both cases.

Change-Id: If6b023e3be4a4555b656660a8522271668496ead
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add functinoal tests for 'openstack stack snapshot delete'"</title>
<updated>2017-07-19T14:19:06+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-07-19T14:19:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=99db9f36815c619bfe2442253f1f03f9bfe01332'/>
<id>99db9f36815c619bfe2442253f1f03f9bfe01332</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace six.iteritems() with .items()</title>
<updated>2017-03-31T09:46:54+00:00</updated>
<author>
<name>M V P Nitesh</name>
<email>m.nitesh@nectechnologies.in</email>
</author>
<published>2017-03-31T09:45:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=61aa092ce5cdee495e6faf63c36419e5583d3627'/>
<id>61aa092ce5cdee495e6faf63c36419e5583d3627</id>
<content type='text'>
1.As mentioned in [1], we should avoid using six.iteritems to achieve
iterators. We can use dict.items instead, as it will return iterators
in PY3 as well. And dict.items/keys will more readable.
2.In py2, the performance about list should be negligible, see the
link [2].
[1] https://wiki.openstack.org/wiki/Python3
[2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html

Change-Id: I3913e8876b34e112140788d7a405da6eedfb5f29
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1.As mentioned in [1], we should avoid using six.iteritems to achieve
iterators. We can use dict.items instead, as it will return iterators
in PY3 as well. And dict.items/keys will more readable.
2.In py2, the performance about list should be negligible, see the
link [2].
[1] https://wiki.openstack.org/wiki/Python3
[2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html

Change-Id: I3913e8876b34e112140788d7a405da6eedfb5f29
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add heat CLI test for deleting stack"</title>
<updated>2016-12-14T02:17:22+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-12-14T02:17:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=f2b7b64f5d8c872e2456736110f1ed64c9825650'/>
<id>f2b7b64f5d8c872e2456736110f1ed64c9825650</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add heat CLI test for creating stack from URL"</title>
<updated>2016-12-14T01:59:53+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-12-14T01:59:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=fca51403a07894afbb816db79da8133dcc6846af'/>
<id>fca51403a07894afbb816db79da8133dcc6846af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update headers for the Openstack Orchestration commands</title>
<updated>2016-11-22T00:38:21+00:00</updated>
<author>
<name>Vijendra Soni</name>
<email>vijendra.soni@cognizant.com</email>
</author>
<published>2016-11-21T01:32:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=b24df1f39b2d099e1bb8ba9788d53d62ba0e93cb'/>
<id>b24df1f39b2d099e1bb8ba9788d53d62ba0e93cb</id>
<content type='text'>
Updated headers for the following commands
openstack orchestration service list, openstack
orchestration template version list, and
openstack orchestration template function list
to keep syncronized with other Openstack commands headers

Change-Id: I57f03369a501080356e5292582654cd703803b96
Closes-Bug: #1643492
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updated headers for the following commands
openstack orchestration service list, openstack
orchestration template version list, and
openstack orchestration template function list
to keep syncronized with other Openstack commands headers

Change-Id: I57f03369a501080356e5292582654cd703803b96
Closes-Bug: #1643492
</pre>
</div>
</content>
</entry>
<entry>
<title>Add functinoal tests for 'openstack stack snapshot delete'</title>
<updated>2016-11-14T14:45:47+00:00</updated>
<author>
<name>shizhihui</name>
<email>zhihui.shi@easystack.cn</email>
</author>
<published>2016-11-14T14:45:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=16b50f84dad258467a64ec02b39847ec4451fb62'/>
<id>16b50f84dad258467a64ec02b39847ec4451fb62</id>
<content type='text'>
For now, there are several heat osc CLIs which do not have own functional tests
in heatclient/tests/functional/osc/v1. I think it is time to add some for heatclient.
Add functional test for 'openstack stack snapshot delete'

Change-Id: I21257b4f6126b9693256c953ed9335edad53a844
Implements: bp add-functional
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For now, there are several heat osc CLIs which do not have own functional tests
in heatclient/tests/functional/osc/v1. I think it is time to add some for heatclient.
Add functional test for 'openstack stack snapshot delete'

Change-Id: I21257b4f6126b9693256c953ed9335edad53a844
Implements: bp add-functional
</pre>
</div>
</content>
</entry>
<entry>
<title>Add heat CLI test for deleting stack</title>
<updated>2016-11-14T12:00:05+00:00</updated>
<author>
<name>Georgy Dyuldin</name>
<email>g.dyuldin@gmail.com</email>
</author>
<published>2016-10-26T08:41:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=496c65e0075c11fb7a4a113ce506eee6ef7dbafc'/>
<id>496c65e0075c11fb7a4a113ce506eee6ef7dbafc</id>
<content type='text'>
Change-Id: I36301642d46f00cbf894eab3560bf298deac50b2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I36301642d46f00cbf894eab3560bf298deac50b2
</pre>
</div>
</content>
</entry>
</feed>
