Skip to content

Commit 0b195a7

Browse files
committed
Fix tox dependencies and tempest doc long line
1 parent c512085 commit 0b195a7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

doc/source/operations/tempest.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,10 @@ command from the base of the ``kayobe-config`` directory:
277277

278278
.. code-block:: bash
279279
280-
sudo -E docker run --detach -it --rm --network host -v $(pwd):/stack/kayobe-automation-env/src/kayobe-config -v $(pwd)/tempest-artifacts:/stack/tempest-artifacts -e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY kayobe:latest /stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/tempest.sh -e ansible_user=stack
280+
sudo -E docker run --name kayobe-automation --detach -it --rm --network host \
281+
-v $(pwd):/stack/kayobe-automation-env/src/kayobe-config -v $(pwd)/tempest-artifacts:/stack/tempest-artifacts \
282+
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY kayobe:latest \
283+
/stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/tempest.sh -e ansible_user=stack
281284
282285
By default, ``no_log`` is set to stop credentials from leaking. This can be
283286
disabled by adding ``-e rally_no_sensitive_log=false`` to the end.

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ skipsdist = True
66
[testenv]
77
install_command = pip install {opts} {packages}
88
deps =
9-
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/yoga}
9+
-c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/unmaintained/yoga/upper-constraints.txt}
1010
-r{toxinidir}/test-requirements.txt
1111

1212
[testenv:pep8]
@@ -20,7 +20,7 @@ commands =
2020
allowlist_externals = rm
2121
skip_install = true
2222
deps =
23-
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/yoga}
23+
-c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/unmaintained/yoga/upper-constraints.txt}
2424
-r{toxinidir}/releasenotes/requirements.txt
2525
commands =
2626
rm -rf releasenotes/build/html
@@ -30,7 +30,7 @@ commands =
3030
allowlist_externals = rm
3131
skip_install = true
3232
deps =
33-
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/yoga}
33+
-c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/unmaintained/yoga/upper-constraints.txt}
3434
-r{toxinidir}/doc/requirements.txt
3535
commands =
3636
rm -rf doc/build/html

0 commit comments

Comments
 (0)