Rui Wang created HDDS-15451:
-------------------------------
Summary: [Documentation] Fix pip install syntax error in
TestTools.md
Key: HDDS-15451
URL: https://issues.apache.org/jira/browse/HDDS-15451
Project: Apache Ozone
Issue Type: Improvement
Components: documentation
Reporter: Rui Wang
Assignee: Rui Wang
###Summary
Fix broken pip install syntax in Blockade testing docs
###Description
The Blockade section in `hadoop-hdds/docs/content/tools/TestTools.md` shows an
invalid pip install command:
{code:python}
pip install pytest==2.8.7,blockade`
{code}
The comma makes `pip treat pytest==2.8.7,blockade` as a single package name, so
the command fails for anyone following the docs.
Fix: use space-separated package names:
{code:python}
pip install pytest==2.8.7 blockade
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]