Drop duplicate section

Change-Id: Idbb9fbdd04e296582c0258f7cbc16a11a8535179
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
This commit is contained in:
Takashi Kajinami
2025-10-14 20:36:05 +09:00
parent 8c6ab4ba28
commit 98f7da9c7b

View File

@@ -1,14 +1,17 @@
Heat style commandments
Heat Style Commandments
=======================
- Step 1: Read the OpenStack style commandments
https://docs.openstack.org/hacking/
- Step 2: Read on
Heat specific commandments
Heat Specific Commandments
--------------------------
None so far
- [HE301] Use LOG.warning() rather than LOG.warn().
- [HE302] Python 3: do not use dict.iteritems.
- [HE303] Python 3: do not use dict.iterkeys.
- [HE304] Python 3: do not use dict.itervalues.
Creating unit tests
-------------------
@@ -21,7 +24,6 @@ without the patch and passes with the patch.
For more information on creating unit tests and utilizing the testing
infrastructure in OpenStack Heat, please read heat/tests/testing-overview.txt.
Running tests
-------------
The testing system is based on a combination of tox and stestr. The canonical
@@ -46,12 +48,3 @@ http://stestr.readthedocs.io
Note that unit tests use a database if available. See
``tools/test-setup.sh`` on how to set up the databases the same way as
done in the OpenStack CI systems.
Heat Specific Commandments
--------------------------
- [HE301] Use LOG.warning() rather than LOG.warn().
- [HE302] Python 3: do not use dict.iteritems.
- [HE303] Python 3: do not use dict.iterkeys.
- [HE304] Python 3: do not use dict.itervalues.