# HG changeset patch # User Sebastien Jodogne # Date 1589309929 -7200 # Node ID 40d9f449b9dd08155979ff0efa25d9eb7a12013c # Parent f95cd3af1c7a7211a49fb201f54c1653df95240b# Parent 192665e6113f6f20dc72ad2ea957c3436a80e202 merge diff -r f95cd3af1c7a -r 40d9f449b9dd README --- a/README Tue May 12 20:58:14 2020 +0200 +++ b/README Tue May 12 20:58:49 2020 +0200 @@ -135,6 +135,21 @@ Note that you will have to grant root access for Docker. +(Option 2c) On Windows: + +Easiest way to run the integration test under windows is actually +run the remote Orthanc and the python script under WSL and run the +orthanc under test on Windows (such that you can debug it). +Note that if Orthanc on Windows is not using the standard port, you +may specify them when starting the test as shown below + +# bash +# python Tests/Run.py --force --dicom 8567 --rest 8568 + +Note that you will have to install Linux prerequisites under WSL +and the orthanc package as well. + + Licensing ========= diff -r f95cd3af1c7a -r 40d9f449b9dd Tests/Run.py --- a/Tests/Run.py Tue May 12 20:58:14 2020 +0200 +++ b/Tests/Run.py Tue May 12 20:58:49 2020 +0200 @@ -113,7 +113,10 @@ f.write(config) localOrthanc = ExternalCommandThread([ - 'Orthanc', CONFIG, #'--verbose', + 'Orthanc', + CONFIG, + #'--verbose', + #'--no-jobs' #'/home/jodogne/Subversion/Orthanc/i/Orthanc', CONFIG, '--verbose' ])