comparison PerfsDb/README.md @ 164:ff939d07989f

saving results
author am@osimis.io
date Mon, 20 Aug 2018 15:50:47 +0200
parents 6995d5d12d88
children 29cb1ee97035
comparison
equal deleted inserted replaced
163:53575aa2614b 164:ff939d07989f
21 21
22 Prerequisites 22 Prerequisites
23 ------------- 23 -------------
24 24
25 - install standard tools 25 - install standard tools
26
26 ```bash 27 ```bash
27 sudo apt-get install -y mercurial wget curl 28 sudo apt-get install -y mercurial wget curl
28 ``` 29 ```
29 30
30 - install python3, pip3 and pipenv 31 - install python3, pip3 and pipenv
75 on benchmark VM: 76 on benchmark VM:
76 python Run.py --orthanc-path=/data/orthanc-binaries/ --plugins-path=/data/orthanc-binaries/ --run --pg9-tiny --pg10-tiny --pg11-tiny --mysql-tiny --sqlite-tiny --mssql-tiny 77 python Run.py --orthanc-path=/data/orthanc-binaries/ --plugins-path=/data/orthanc-binaries/ --run --pg9-tiny --pg10-tiny --pg11-tiny --mysql-tiny --sqlite-tiny --mssql-tiny
77 78
78 ``` 79 ```
79 80
80 Filtering tests 81 Command line options
81 --------------- 82 --------------------
83
82 ```bash 84 ```bash
83 python Run.py --orthanc-path=/.../ --plugins-path=/.../ --run --pg9-tiny test-filter=*ByPatient* 85 --clear to clear the DB
86 --init to initialize the DB
87 --run to run the tests
84 88
89 --config to include the config in the test run/init/clear
90
91 --orthanc-path path to the folder where the Orthanc execuble lies
92 --plugins-path path to the folder where the Orthanc plugins lie
93
94 --test-filter=*ByPatient* to filter the tests to execute
95 --repeat=20 to repeate each test N times (default is 20)
85 ``` 96 ```