diff --git a/README.md b/README.md
index a19699edc16296d8ed6c59033bd484f3e906cdf2..d141181064efae3c4d097a839d7ae0af05d235ba 100644
--- a/README.md
+++ b/README.md
@@ -96,3 +96,15 @@ SSH into the CLMC server
 Run a python script to generate the test data sets
 
 `python3 /vagrant/test/streaming-sim/StreamingSim.py`
+
+Test the generated data set by executing the following command
+
+`pytest -s /vagrant/test/streaming-sim/VerifySimResults.py`
+
+The `-s` option in the command is used to output prints used in the test code and is, therefore, optional.
+
+If pytest is not installed, an easy solution is to use the Python Package Index (PyPI)
+
+`sudo apt-get install python3-pip` 
+  
+`pip3 install pytest`