diff --git a/tests/How-To-Run-Test-And-How-To-Add-New-Test-Case.md b/tests/How-To-Run-Test-And-How-To-Add-New-Test-Case.md index 247a7f6d7d8af1b1397037bb76e905772898ed47..d917291b3be83127c587d0a3b2c4ac06f088f1f0 100644 --- a/tests/How-To-Run-Test-And-How-To-Add-New-Test-Case.md +++ b/tests/How-To-Run-Test-And-How-To-Add-New-Test-Case.md @@ -8,10 +8,9 @@ 3. mkdir debug; cd debug; cmake ..; make ; sudo make install -4. pip install ../src/connector/python ; pip3 install - ../src/connector/python +4. cd ../tests && pip3 install -r requirements.txt + -5. pip install numpy; pip3 install numpy fabric2 psutil pandas(numpy is required only if you need to run querySort.py) > Note: Both Python2 and Python3 are currently supported by the Python test > framework. Since Python2 is no longer officially supported by Python Software diff --git a/tests/requirements.txt b/tests/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..2128c1d7fd2f14bb84881dd77b77202ce9746ed0 --- /dev/null +++ b/tests/requirements.txt @@ -0,0 +1,5 @@ +../src/connector/python +numpy +fabric2 +psutil +pandas \ No newline at end of file