diff options
author | Dhairya Parmar <dparmar@redhat.com> | 2023-10-05 10:12:31 +0200 |
---|---|---|
committer | Dhairya Parmar <dparmar@redhat.com> | 2023-10-05 16:47:14 +0200 |
commit | 1f78a32a1822fea1a56a88215e452b730b7672c7 (patch) | |
tree | 8efd72be762cd670e714e78e6eb0389e2f719746 /doc/dev/developer_guide | |
parent | Merge pull request #52735 from vedanshbhartia/coverity_minlong (diff) | |
download | ceph-1f78a32a1822fea1a56a88215e452b730b7672c7.tar.xz ceph-1f78a32a1822fea1a56a88215e452b730b7672c7.zip |
doc: remove egg fragment from dev/developer_guide/running-tests-locally
DEPRECATION: git+https://github.com/ceph/teuthology#egg=teuthology
[test] contains an egg fragment with a non-PEP 508 name pip 25.0 will enforce
this behaviour change. A possible replacement is to use the req @ url syntax,
and remove the egg fragment. Discussion can be found at
https://github.com/pypa/pip/issues/11617
Signed-off-by: Dhairya Parmar <dparmar@redhat.com>
Diffstat (limited to 'doc/dev/developer_guide')
-rw-r--r-- | doc/dev/developer_guide/running-tests-locally.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/dev/developer_guide/running-tests-locally.rst b/doc/dev/developer_guide/running-tests-locally.rst index 8effd97e408..262683bfba9 100644 --- a/doc/dev/developer_guide/running-tests-locally.rst +++ b/doc/dev/developer_guide/running-tests-locally.rst @@ -55,7 +55,7 @@ using `vstart_runner.py`_. To do that, you'd need `teuthology`_ installed:: $ virtualenv --python=python3 venv $ source venv/bin/activate $ pip install 'setuptools >= 12' - $ pip install git+https://github.com/ceph/teuthology#egg=teuthology[test] + $ pip install teuthology[test]@git+https://github.com/ceph/teuthology $ deactivate The above steps installs teuthology in a virtual environment. Before running |