Uh oh!
There was an error while loading. Please reload this page.
HDDS-15451. Fix broken pip install syntax in TestTools.md - #10407
Conversation
@amaliujia could you please create a jira for this PR and mention the jira ID in the PR title as well as in the commit message. Example: #7806 |
amaliujia
commented
Jun 2, 2026
@sreejasahithi thank you and done. |
adoroszlai
left a comment
There was a problem hiding this comment.
Thanks @amaliujia for checking these docs.
| @@ -60,7 +60,7 @@ Blockade tests are implemented with the help of tests and can be started from th | |||
| ``` | |||
| cd blockade | |||
There was a problem hiding this comment.
I think it's in tests/blockade.
ozone/hadoop-ozone/dist/dev-support/bin/dist-layout-stitching
Lines 112 to 113 in ba78ed8
| cd blockade | |
| cd tests/blockade |
Also appears in the sentence above:
Also please consider improving that sentence, I don't think "Blockade tests are implemented with the help of tests" is meaningful.
sreejasahithi
left a comment
There was a problem hiding this comment.
Thanks @amaliujia for the patch, found some more corrections that can be done in this doc
There was a problem hiding this comment.
nit: every is repeated twice here
There was a problem hiding this comment.
Nice catch. Did a simple correction.
There was a problem hiding this comment.
we can just say ozone freon --help
Uh oh!
There was an error while loading. Please reload this page.
What changes were proposed in this pull request?
Summary
Fix broken pip install syntax in Blockade testing docs
Description
The Blockade section in
hadoop-hdds/docs/content/tools/TestTools.mdshows an invalid pip install command:pip install pytest==2.8.7,blockadeThe comma makes
pip treat pytest==2.8.7,blockadeas a single package name, so the command fails for anyone following the docs.Fix: use space-separated package names:
pip install pytest==2.8.7 blockadeWhat is the link to the Apache JIRA
HDDS-15451
How was this patch tested?
Tested by
hugo serve.