summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* OpenDev Migration Patchpike-eolstable/pikeOpenDev Sysadmins2019-04-191-1/+1
| | | | | | | | | | | | | | | This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have.
* import zuul job settings from project-configpike-em3.21.2Doug Hellmann2018-08-031-0/+12
| | | | | | | | | | | | | | | This is a mechanically generated patch to complete step 1 of moving the zuul job settings out of project-config and into each project repository. Because there will be a separate patch on each branch, the branch specifiers for branch-specific jobs have been removed. See the python3-first goal document for details: https://governance.openstack.org/tc/goals/stein/python3-first.html Change-Id: I09dbae75667717a39b1c0b0f7d8d8dce5ab07a36 Story: #2003250
* Fix sphinx-docs job for stable brancheeldill2018-04-271-0/+5
| | | | | | | | | build-openstack-sphinx-docs jobs fail on stable branches due to the new pip version 10 introduces some previously Warning as Error: in case of calling "pip install" without any package name, the command fails. tox_install.sh is called during docs job without any package passed to pip. Change-Id: Ic011be44d4852a293d7adc0ef25b7e498e4b5d20
* Windows: ensure exec calls don't block other greenthreads3.21.1Lucian Petrut2017-08-182-3/+61
| | | | | | | | | | | | | | | | | | | eventlet.green.subprocess is not actually greenthread friendly on Windows. It just uses the native subprocess.Popen in this case. For this reason, exec calls do not yield on Windows, blocking other greenthreads. This change avoids this issue by wrapping the 'communicate' call using eventlet.tpool. We're also ensuring that subprocess.Popen uses *native* threads internally in order to avoid deadlocks when passing data through stdin. Change-Id: Ic25fd1b61b5498f16e6049cbbe0877492f8aab4d Closes-Bug: #1709586 (cherry picked from commit 3ac3c169ada2e1402ef9e71f0653af696a3d28af)
* Updated from global requirementsOpenStack Proposal Bot2017-08-111-1/+1
| | | | Change-Id: Id90419d56b43412cbf18af725236d4fa0c493719
* Update UPPER_CONSTRAINTS_FILE for stable/pikeOpenStack Release Bot2017-07-281-1/+1
| | | | Change-Id: I67646d8321e4686dc3c592833c0323fb4a4db048
* Update .gitreview for stable/pikeOpenStack Release Bot2017-07-281-1/+2
| | | | Change-Id: I7da789ed2b7befe7c81fc732a491eaf240d7de8d
* Merge "Remove log translations"3.21.0Jenkins2017-07-122-12/+2
|\
| * Remove log translationsloooosy2017-07-112-12/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Log messages are no longer being translated. This removes all use of the _LE, _LI, and _LW translation markers to simplify logging and to avoid confusion with new contributions. See: http://lists.openstack.org/pipermail/openstack-i18n/2016-November/002574.html http://lists.openstack.org/pipermail/openstack-dev/2017-March/113365.html Change-Id: Iec2ef31f8543d51c8b6e1aed53f950800813c30b
* | Merge "Update URLs in documents according to document migration"Jenkins2017-07-123-5/+5
|\ \
| * | Update URLs in documents according to document migrationChangBo Guo(gcb)2017-07-123-5/+5
| | | | | | | | | | | | Change-Id: I42b34fbc19d3f895b0260bedf06b9cae0d27338b
* | | Merge "Imported Translations from Zanata"Jenkins2017-07-126-109/+24
|\ \ \
| * | | Imported Translations from ZanataOpenStack Proposal Bot2017-07-126-109/+24
| |/ / | | | | | | | | | | | | | | | | | | For more information about this automatic import see: http://docs.openstack.org/developer/i18n/reviewing-translation-import.html Change-Id: Ia11093f4fd2fa12077a202872b3ed6ce79e34e83
* | | Updated from global requirementsOpenStack Proposal Bot2017-07-111-1/+1
|/ / | | | | | | Change-Id: I59fb58c5cacaf2168d1f9ef01c1a172807270fc0
* | switch from oslosphinx to openstackdocsthemeDoug Hellmann2017-07-113-5/+17
| | | | | | | | | | Change-Id: Ieadf9b992b269d54dd9c79523d5879b6ad71ba7c Signed-off-by: Doug Hellmann <doug@doughellmann.com>
* | turn on warning-is-error for sphinxDoug Hellmann2017-07-111-0/+1
| | | | | | | | | | Change-Id: I6267ccf0581fe72f20118856ec4309caed55f05f Signed-off-by: Doug Hellmann <doug@doughellmann.com>
* | rearrange existing documentation to follow the new layout standardDoug Hellmann2017-07-1114-23/+21
| | | | | | | | | | Change-Id: I79d7b97c7e9395f75fa158d870485853418a4db7 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
* | Merge "Check reStructuredText documents for common style issues"Jenkins2017-07-111-3/+3
|\ \
| * | Check reStructuredText documents for common style issuesZhongShengping2017-07-111-3/+3
| |/ | | | | | | Change-Id: Ib07b12e376d5c89c04ad525c75228d14e6595614
* | Updated from global requirementsOpenStack Proposal Bot2017-07-112-7/+7
|/ | | | Change-Id: I7db5f2e87abe16fa39d41749935bb4477a43da58
* Check for SubprocessError by name on Python 3.xYuriy Taraday2017-06-291-6/+11
| | | | | | | | | | | | With eventlet SubprocessError raised by Popen seem to have different class from subprocess.SubprocessError accessible from test. I don't have proper solution for this, it seems somewhere old SubprocessError is cached and then eventlet overrides it, so it is not visible from test method context. This workaround seems to be good enough to unblock gate. Change-Id: If5ae0911e14671e05aca5e393c5cc183b72703d6 Closes-Bug: #1688201
* Updated from global requirements3.20.0OpenStack Proposal Bot2017-03-131-1/+1
| | | | Change-Id: Ia8724dde541b199dcdcacab866b4b93272a25641
* Using fixtures.MockPatch instead of mockpatch.Patchgecong19732017-03-091-4/+3
| | | | | | This module has been deprecated in favor of fixtures.MockPatch. Change-Id: Iee59fa82e727e0575e8b6b6afe042231aa8fa5b8
* Updated from global requirements3.19.0OpenStack Proposal Bot2017-03-033-4/+4
| | | | Change-Id: Ib8a380982a5eb32fc18150987d97c3f067cdc858
* [Fix gate]Update test requirementricolin2017-03-021-1/+1
| | | | | | | | | Since pbr already landed and the old version of hacking seems not work very well with pbr>=2, we should update it to match global requirement. Partial-Bug: #1668848 Change-Id: I6067710f787cdf213942ace53890d22ee691bd02
* Updated from global requirementsOpenStack Proposal Bot2017-02-101-1/+1
| | | | Change-Id: I3dead32d0b34a484e0857b3cddd4bf3174066c28
* Merge "Remove support for py34"Jenkins2017-02-092-2/+1
|\
| * Remove support for py34gengchc22017-02-082-2/+1
| | | | | | | | | | | | | | | | The gating on python 3.4 is restricted to <= Mitaka. This is due to the change from Ubuntu Trusty to Xenial, where only python3.5 is available. There is no need to continue to keep these settings. Change-Id: I69fedf01df329ab2f60c4b2583ac5541debeeee4
* | Merge "pbr.version.VersionInfo needs package name (oslo.xyz and not oslo_xyz)"Jenkins2017-02-071-1/+1
|\ \
| * | pbr.version.VersionInfo needs package name (oslo.xyz and not oslo_xyz)Davanum Srinivas2017-02-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to pass into VersionInfo what one would expect from running: setup.py --name Right now we pass in say oslo_context and pbr fails if there is no .git in the python source tree Closes-Bug: #1662266 Change-Id: I6bb3594ad625e0538cc8c654d679886b8302719a
* | | Update reno for stable/ocataOpenStack Release Bot2017-01-202-0/+7
|/ / | | | | | | Change-Id: I8505c756222d7c58d6d29fea2685f385dfee262f
* | Automatically convert process_input to bytes3.18.03.17.0Davanum Srinivas2017-01-122-2/+16
|/ | | | | | | | | | | | | | | | On py35, if process_input is a string we end with an Error: TypeError: memoryview: a bytes-like object is required, not 'str' A whole lot of code in os-brick/cinder/neutron currently need to be fixed. Hardest problem is tracking down every instance of this problem and trying to test/fix it at source. See example of cinder/os-brick/oslo.rootwrap/oslo.privep code problem here: http://logs.openstack.org/43/418643/2/check/gate-rally-dsvm-py35-cinder-nv/6efa7b5/logs/screen-n-cpu.txt.gz?level=ERROR It's just better to fix it in one spot and pass the correct thing to subprocess.communicate Change-Id: I88d1510a7ba4c020f73452f0b80e996c22b1edf1
* Add Constraints supportTony Breeds2016-12-202-1/+36
| | | | | | | | | | | | Adding constraints support to libraries is slightly more complex than services as the libraries themselves are listed in upper-constraints.txt which leads to errors that you can't install a specific version and a constrained version. This change adds constraints support by also adding a helper script to edit the constraints to remove oslo.concurrency. Change-Id: Ic887ce8e220df6b87d823490dfb14894935cac61
* Show team and repo badges on READMEFlavio Percoco2016-11-251-0/+9
| | | | | | | | | | | | | | | | This patch adds the team's and repository's badges to the README file. The motivation behind this is to communicate the project status and features at first glance. For more information about this effort, please read this email thread: http://lists.openstack.org/pipermail/openstack-dev/2016-October/105562.html To see an example of how this would look like check: b'https://gist.github.com/c05e5ae8515d9cf02814a415f26db4d2\n' Change-Id: I97e7bbe8e0eedf5db5d99657131e0433fb2802c0
* Updated from global requirements3.16.0OpenStack Proposal Bot2016-11-091-1/+1
| | | | Change-Id: I8a42bd24d92d0e75ed8d192cc9b23833f8de2ce8
* Updated from global requirementsOpenStack Proposal Bot2016-11-061-1/+1
| | | | Change-Id: Id18166d7f659dc601d4fecca1e382c93fd68f987
* Merge "Updated from global requirements"Jenkins2016-11-022-4/+4
|\
| * Updated from global requirementsOpenStack Proposal Bot2016-11-022-4/+4
| | | | | | | | Change-Id: I5f0339656211a7aebc2941f5aa865e6afb6b9d5b
* | Imported Translations from ZanataOpenStack Proposal Bot2016-10-261-0/+33
|/ | | | | | | For more information about this automatic import see: https://wiki.openstack.org/wiki/Translations/Infrastructure Change-Id: I69e37304aa12c92ec5fe645ec1425784c3e26d42
* Merge "[TrivialFix] Replace 'assertTrue(a in b)' with 'assertIn(a, b)'"Jenkins2016-10-251-7/+7
|\
| * [TrivialFix] Replace 'assertTrue(a in b)' with 'assertIn(a, b)'howardlee2016-10-211-7/+7
| | | | | | | | Change-Id: Ib61f2f2c695f79c8eb0fa47a2d2d1bc66ccaeb7f
* | Remove unnecessary requirementsGevorg Davoian2016-10-221-2/+0
|/ | | | Change-Id: I84cb68878ff929b5160d00b4353391dbfbf52347
* Changed the home-page link3.15.0melissaml2016-10-161-1/+1
| | | | | | Set the correct link for home-page. Change-Id: I535808010ddfeb5b58efd11567820c52bd6ce58c
* Merge "Enable release notes translation"Jenkins2016-10-121-0/+3
|\
| * Enable release notes translationAndreas Jaeger2016-10-061-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Releasenote translation publishing is being prepared. 'locale_dirs' needs to be defined in conf.py to generate translated version of the release notes. Note that this repository might not get translated release notes - or no translations at all - but we add the entry here nevertheless to prepare for it. Change-Id: I6fd9f1265f05a5d4e44355def5a6519a8021e25d
* | Change assertTrue(isinstance()) by optimal assertgecong19732016-10-081-6/+6
|/ | | | | | | | | Some of tests use different method of assertTrue(isinstance(A, B)) or assertEqual(type(A), B). The correct way is to use assertIsInstance(A, B) provided by testtools Change-Id: Iad2ee275837c28b40c1062386db5a29969ee98dc
* Merge "Ignore prlimit argument on Windows"Jenkins2016-10-022-5/+32
|\
| * Ignore prlimit argument on WindowsLucian Petrut2016-09-292-5/+32
| | | | | | | | | | | | | | | | | | | | | | | | The built in 'resource' module is used in order to apply process resource limits. This is not available on Windows. For the moment, we'll ignore this argument and log a warning message. In the future, we may provide a portable implementation for this feature. Change-Id: I6a82916eb68fbf8737b45a65f71cae1f835d12d1 Closes-Bug: #1627766
* | Updated from global requirementsOpenStack Proposal Bot2016-09-281-1/+1
| | | | | | | | Change-Id: Ife80bde19a9b6fc6ea57f961bf4b75b0ca7d634e
* | Updated from global requirementsOpenStack Proposal Bot2016-09-271-1/+1
|/ | | | Change-Id: I5e5ead5f3adf9f3555233fac4f17fa1a6f9d0046