Explorar o código

HDDS-1791. Update network-tests/src/test/blockade/README.md file

Closes #1083
Nanda kumar %!s(int64=5) %!d(string=hai) anos
pai
achega
7b8177ba0f

+ 11 - 29
hadoop-ozone/fault-injection-test/network-tests/src/test/blockade/README.md

@@ -16,45 +16,27 @@
 Following python packages need to be installed before running the tests :
 Following python packages need to be installed before running the tests :
 
 
 1. blockade
 1. blockade
-2. pytest==2.8.7
+2. pytest==3.2.0
 
 
 Running test as part of the maven build:
 Running test as part of the maven build:
 
 
-mvn clean verify -Pit
-
-Running test as part of the released binary:
-
-You can execute all blockade tests with following command-lines:
-
 ```
 ```
-cd $DIRECTORY_OF_OZONE
-python -m pytest -s  tests/blockade/
+mvn clean verify -Pit
 ```
 ```
 
 
-You can also execute fewer blockade tests with following command-lines:
-
-```
-cd $DIRECTORY_OF_OZONE
-python -m pytest -s  tests/blockade/<PATH_TO_PYTHON_FILE>
-e.g: python -m pytest -s tests/blockade/test_blockade_datanode_isolation.py
-```
+Running test as part of the released binary:
 
 
-You can change the default 'sleep' interval in the tests with following
-command-lines:
+You can execute all blockade tests with following command:
 
 
 ```
 ```
-cd $DIRECTORY_OF_OZONE
-python -m pytest -s  tests/blockade/ --containerStatusSleep=<SECONDS>
-
-e.g: python -m pytest -s  tests/blockade/ --containerStatusSleep=720
+cd $OZONE_HOME
+python -m pytest tests/blockade
 ```
 ```
 
 
-By default, second phase of the tests will not be run.
-In order to run the second phase of the tests, you can run following
-command-lines:
-
-```
-cd $DIRECTORY_OF_OZONE
-python -m pytest -s  tests/blockade/ --runSecondPhase=true
+You can also execute specific blockade tests with following command:
 
 
 ```
 ```
+cd $OZONE_HOME
+python -m pytest tests/blockade/< PATH TO PYTHON FILE >
+e.g: python -m pytest tests/blockade/test_blockade_datanode_isolation.py
+```