summaryrefslogtreecommitdiff
path: root/TESTING.rst
diff options
context:
space:
mode:
authorIan Wienand <iwienand@redhat.com>2019-03-24 20:34:34 +0000
committerBernard Cafarelli <bcafarel@redhat.com>2019-03-25 11:31:17 +0100
commit983d659d76ddabbc6a88bbbbff01e8f76e937641 (patch)
treea27bfba0626a43c9ddcee7bc2168e5769fcf89ae /TESTING.rst
parentc70a935ce7adafa527aab05ceabcd2e1b7837c27 (diff)
downloadneutron-983d659d76ddabbc6a88bbbbff01e8f76e937641.tar.gz
Replace openstack.org git:// URLs with https://
This is a mechanically generated change to replace openstack.org git:// URLs with https:// equivalents. This is in aid of a planned future move of the git hosting infrastructure to a self-hosted instance of gitea (https://gitea.io), which does not support the git wire protocol at this stage. This update should result in no functional change. For more information see the thread at http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html Change-Id: I4c9b513eb65ec4c50bdb9a66dfcc676360bdaa28
Diffstat (limited to 'TESTING.rst')
-rw-r--r--TESTING.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/TESTING.rst b/TESTING.rst
index 9220992b5a..a8321a238b 100644
--- a/TESTING.rst
+++ b/TESTING.rst
@@ -518,7 +518,7 @@ environment variable to point at a local package repo.
For example, to run against the 'master' branch of neutron-lib:
cd $SRC
- git clone git://git.openstack.org/openstack/neutron-lib
+ git clone https://git.openstack.org/openstack/neutron-lib
cd $NEUTRON_DIR
env TOX_ENV_SRC_MODULES=$SRC/neutron-lib tox -r -e pep8,py27
@@ -529,9 +529,9 @@ To run against a particular gerrit change of the lib (substituting the
desired gerrit refs for this example):
cd $SRC
- git clone git://git.openstack.org/openstack/neutron-lib
+ git clone https://git.openstack.org/openstack/neutron-lib
cd neutron-lib
- git fetch git://git.openstack.org/openstack/neutron-lib refs/changes/13/635313/6 && git checkout FETCH_HEAD
+ git fetch https://git.openstack.org/openstack/neutron-lib refs/changes/13/635313/6 && git checkout FETCH_HEAD
cd $NEUTRON_DIR
env TOX_ENV_SRC_MODULES=$SRC/neutron-lib tox -r -e pep8,py27