summaryrefslogtreecommitdiff
path: root/doc/source/contributor/developing.rst
Commit message (Collapse)AuthorAgeFilesLines
* Fix that the path of functional testryanKor2021-09-251-1/+1
| | | | | | | | | | | | | before change: $ tox -e functional -- --regex functional.tests.compute.v2.test_server after change: $ tox -e functional -- --regex tests.functional.compute.v2.test_server the test unit path document should be change the above line. (fixed wrong letter) Change-Id: I49674fb0d56ee65c1f6328b9d960b16876173e2d
* Add pre-commitStephen Finucane2021-03-111-13/+40
| | | | | | | | | This is helpful to automate code style checks at runtime. We include documentation on how to run this as well as a general overview of style guidelines in OSC. Change-Id: I2dc5a0f760ce53269ae25677560b2611cc6bfd91 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
* Remove references to Python 2.7Stephen Finucane2020-11-051-8/+7
| | | | | | | We don't support it anymore. This is just noise now. Change-Id: I3640e7d8e520db69f83f95e9c7759279f7c15008 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
* Remove usage of sixsongwenping2020-10-071-1/+0
| | | | | | | | | | | With python3.x, classes can use 'metaclass=' instead of 'six.add_metaclass', 'six.iteritems' and 'six.iterkeys' can be replaced by 'items' and 'keys', 'six.moves.urllib.parse' can be replaced by 'urllib.parse', 'six.StringIO' and 'six.moves.cStringIO' can be replaced by 'io.StringIO', 'six.text_type' and 'six.string_type' are just 'str'. Change-Id: I84848c0bf8ab3c36dd821141191e2725e4e3b58b
* Update developing.rstlikui2020-09-081-1/+1
| | | | | | Use unittest.mock instead of mock Change-Id: Ib573e9d217b4f18ef4e7ba3ab581164be423cb26
* Merge "Update the content about Import Format"Zuul2020-03-201-9/+12
|\
| * Update the content about Import Formatchenxing2018-05-221-9/+12
| | | | | | | | | | | | | | Following by https://git.openstack.org/cgit/openstack-dev/hacking/tree/HACKING.rst#n71 Change-Id: I2f32d773c12d484e8c0e435a78a3fe16d0eeae03
* | Remove mention of meetings from docsKendall Nelson2020-01-281-6/+5
|/ | | | | | | | Since the OpenStackClient team doesn't meet anymore, I removed the mention of meetings and added mention of the IRC channel in the communication section of the docs.. Change-Id: Iefa95878f95bf84bd9fc22ea4c914effc30dffa7
* Update the documentation link for doc migrationHangdong Zhang2017-07-241-1/+1
| | | | Change-Id: I7833e40d66abe233af5a211bcefadc141fe8e54b
* reorganize existing documentation according to the new standard layoutDoug Hellmann2017-06-231-0/+209
Move existing content around based on the doc-migration specification. Replace :doc: markup with :ref: to have sphinx keep track of where the files move and generate valid hyperlinks. Add a few toctrees and index pages for the new directories. Depends-On: Ia750cb049c0f53a234ea70ce1f2bbbb7a2aa9454 Change-Id: I253ee8f89d3ec40e39310c18bb87ed1d3d5de330 Signed-off-by: Doug Hellmann <doug@doughellmann.com>