Updates for OpenDev transition
Replace 'git.openstack.org' with 'opendev.org' in contributor/index.rst. Update URLs in other places as well though there are redirects. See the following URLs for more details: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Change-Id: Ifb9f4274d2fd0fa81e7501fe176eeead3acd0e3e
This commit is contained in:
parent
7cfd3abfef
commit
fe4138aea4
@ -35,7 +35,7 @@ This is a client for the OpenStack Compute API. It provides a Python API (the
|
||||
.. _Launchpad project: https://launchpad.net/python-novaclient
|
||||
.. _Blueprints: https://blueprints.launchpad.net/python-novaclient
|
||||
.. _Bugs: https://bugs.launchpad.net/python-novaclient
|
||||
.. _Source: https://git.openstack.org/cgit/openstack/python-novaclient
|
||||
.. _Source: https://opendev.org/openstack/python-novaclient
|
||||
.. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html
|
||||
.. _Specs: http://specs.openstack.org/openstack/nova-specs/
|
||||
.. _Release Notes: https://docs.openstack.org/releasenotes/python-novaclient
|
||||
|
@ -2,11 +2,11 @@
|
||||
Contributor Guide
|
||||
===================
|
||||
|
||||
Code is hosted at `git.openstack.org`__. Submit bugs to the python-novaclient
|
||||
Code is hosted at `opendev.org`__. Submit bugs to the python-novaclient
|
||||
project on `Launchpad`__. Submit code to the `openstack/python-novaclient`
|
||||
project using `Gerrit`__.
|
||||
|
||||
__ https://git.openstack.org/cgit/openstack/python-novaclient
|
||||
__ https://opendev.org/openstack/python-novaclient
|
||||
__ https://bugs.launchpad.net/python-novaclient
|
||||
__ https://docs.openstack.org/infra/manual/developers.html#development-workflow
|
||||
|
||||
|
@ -31,4 +31,4 @@ DevStack installation with a demo and an admin user/tenant - or clouds named
|
||||
|
||||
Refer to `Consistent Testing Interface`__ for more details.
|
||||
|
||||
__ https://git.openstack.org/cgit/openstack/governance/tree/reference/project-testing-interface.rst
|
||||
__ https://opendev.org/openstack/governance/src/branch/master/reference/project-testing-interface.rst
|
||||
|
@ -21,9 +21,9 @@ The process for command deprecation is:
|
||||
2. Once the change is approved, have a member of the `nova-release`_ team
|
||||
release a new version of `python-novaclient`.
|
||||
|
||||
.. _nova-release: https://review.openstack.org/#/admin/groups/147,members
|
||||
.. _nova-release: https://review.opendev.org/#/admin/groups/147,members
|
||||
|
||||
3. Example: `<https://review.openstack.org/#/c/185141/>`_
|
||||
3. Example: `<https://review.opendev.org/#/c/185141/>`_
|
||||
|
||||
This change was made while the nova 12.0.0 Liberty release was in
|
||||
development. The current version of `python-novaclient` at the time was
|
||||
|
@ -28,7 +28,7 @@ class TestOsServicesNovaClient(base.ClientTestBase):
|
||||
# services returned by client
|
||||
# NOTE(sdague): service disable has the chance in racing
|
||||
# with other tests. Now functional tests for novaclient are launched
|
||||
# in serial way (https://review.openstack.org/#/c/217768/), but
|
||||
# in serial way (https://review.opendev.org/#/c/217768/), but
|
||||
# it's a potential issue for making these tests parallel in the future
|
||||
for serv in self.client.services.list():
|
||||
# In Pike the os-services API was made multi-cell aware and it
|
||||
|
@ -72,7 +72,7 @@ class TestOsServicesNovaClientV2_53(base.ClientTestBase):
|
||||
# services returned by client
|
||||
# NOTE(sdague): service disable has the chance in racing
|
||||
# with other tests. Now functional tests for novaclient are launched
|
||||
# in serial way (https://review.openstack.org/#/c/217768/), but
|
||||
# in serial way (https://review.opendev.org/#/c/217768/), but
|
||||
# it's a potential issue for making these tests parallel in the future
|
||||
for serv in self.client.services.list():
|
||||
# In Pike the os-services API was made multi-cell aware and it
|
||||
|
@ -4095,7 +4095,7 @@ class ShellTest(utils.TestCase):
|
||||
# before feature-freeze
|
||||
# (we can do it, since nova-api change didn't actually add
|
||||
# new microversion, just an additional checks. See
|
||||
# https://review.openstack.org/#/c/233076/ for more details)
|
||||
# https://review.opendev.org/#/c/233076/ for more details)
|
||||
20, # doesn't require any changes in novaclient
|
||||
27, # NOTE(cdent): 27 adds support for updated microversion
|
||||
# headers, and is tested in test_api_versions, but is
|
||||
|
8
tox.ini
8
tox.ini
@ -14,7 +14,7 @@ passenv = ZUUL_CACHE_DIR
|
||||
REQUIREMENTS_PIP_LOCATION
|
||||
install_command = pip install {opts} {packages}
|
||||
deps =
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
|
||||
-r{toxinidir}/test-requirements.txt
|
||||
-r{toxinidir}/requirements.txt
|
||||
commands =
|
||||
@ -32,7 +32,7 @@ commands = bandit -r novaclient -n5 -x tests
|
||||
[testenv:venv]
|
||||
basepython = python3
|
||||
deps =
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
|
||||
-r{toxinidir}/test-requirements.txt
|
||||
-r{toxinidir}/requirements.txt
|
||||
-r{toxinidir}/doc/requirements.txt
|
||||
@ -41,7 +41,7 @@ commands = {posargs}
|
||||
[testenv:docs]
|
||||
basepython = python3
|
||||
deps =
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
|
||||
-r{toxinidir}/requirements.txt
|
||||
-r{toxinidir}/doc/requirements.txt
|
||||
commands =
|
||||
@ -53,7 +53,7 @@ commands =
|
||||
[testenv:releasenotes]
|
||||
basepython = python3
|
||||
deps =
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
||||
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
|
||||
-r{toxinidir}/requirements.txt
|
||||
-r{toxinidir}/doc/requirements.txt
|
||||
commands =
|
||||
|
Loading…
x
Reference in New Issue
Block a user