eric7/Documentation/Source/eric7.Debugger.DebuggerInterfaceNone.html

branch
eric7
changeset 9097
213951c41dcd
parent 8964
29344a31ee2a
equal deleted inserted replaced
9096:f6f7d8f364c3 9097:213951c41dcd
193 <tr> 193 <tr>
194 <td><a href="#DebuggerInterfaceNone.remoteThreadList">remoteThreadList</a></td> 194 <td><a href="#DebuggerInterfaceNone.remoteThreadList">remoteThreadList</a></td>
195 <td>Public method to request the list of threads from the client.</td> 195 <td>Public method to request the list of threads from the client.</td>
196 </tr> 196 </tr>
197 <tr> 197 <tr>
198 <td><a href="#DebuggerInterfaceNone.remoteUTDiscover">remoteUTDiscover</a></td>
199 <td>Public method to perform a test case discovery.</td>
200 </tr>
201 <tr>
202 <td><a href="#DebuggerInterfaceNone.remoteUTPrepare">remoteUTPrepare</a></td>
203 <td>Public method to prepare a new unittest run.</td>
204 </tr>
205 <tr>
206 <td><a href="#DebuggerInterfaceNone.remoteUTRun">remoteUTRun</a></td>
207 <td>Public method to start a unittest run.</td>
208 </tr>
209 <tr>
210 <td><a href="#DebuggerInterfaceNone.remoteUTStop">remoteUTStop</a></td>
211 <td>public method to stop a unittest run.</td>
212 </tr>
213 <tr>
214 <td><a href="#DebuggerInterfaceNone.remoteWatchpoint">remoteWatchpoint</a></td> 198 <td><a href="#DebuggerInterfaceNone.remoteWatchpoint">remoteWatchpoint</a></td>
215 <td>Public method to set or clear a watch expression.</td> 199 <td>Public method to set or clear a watch expression.</td>
216 </tr> 200 </tr>
217 <tr> 201 <tr>
218 <td><a href="#DebuggerInterfaceNone.remoteWatchpointEnable">remoteWatchpointEnable</a></td> 202 <td><a href="#DebuggerInterfaceNone.remoteWatchpointEnable">remoteWatchpointEnable</a></td>
916 <dt><i>debuggerId</i> (str)</dt> 900 <dt><i>debuggerId</i> (str)</dt>
917 <dd> 901 <dd>
918 ID of the debugger backend 902 ID of the debugger backend
919 </dd> 903 </dd>
920 </dl> 904 </dl>
921 <a NAME="DebuggerInterfaceNone.remoteUTDiscover" ID="DebuggerInterfaceNone.remoteUTDiscover"></a>
922 <h4>DebuggerInterfaceNone.remoteUTDiscover</h4>
923 <b>remoteUTDiscover</b>(<i>syspath, workdir, discoveryStart</i>)
924
925 <p>
926 Public method to perform a test case discovery.
927 </p>
928 <dl>
929
930 <dt><i>syspath</i> (list of str)</dt>
931 <dd>
932 list of directories to be added to sys.path on the
933 remote side
934 </dd>
935 <dt><i>workdir</i> (str)</dt>
936 <dd>
937 path name of the working directory
938 </dd>
939 <dt><i>discoveryStart</i> (str)</dt>
940 <dd>
941 directory to start auto-discovery at
942 </dd>
943 </dl>
944 <a NAME="DebuggerInterfaceNone.remoteUTPrepare" ID="DebuggerInterfaceNone.remoteUTPrepare"></a>
945 <h4>DebuggerInterfaceNone.remoteUTPrepare</h4>
946 <b>remoteUTPrepare</b>(<i>fn, tn, tfn, failed, cov, covname, coverase, syspath, workdir, discover, discoveryStart, testCases, debug</i>)
947
948 <p>
949 Public method to prepare a new unittest run.
950 </p>
951 <dl>
952
953 <dt><i>fn</i> (str)</dt>
954 <dd>
955 name of file to load
956 </dd>
957 <dt><i>tn</i> (str)</dt>
958 <dd>
959 name of test to load
960 </dd>
961 <dt><i>tfn</i> (str)</dt>
962 <dd>
963 test function name to load tests from
964 </dd>
965 <dt><i>failed</i> (list of str)</dt>
966 <dd>
967 list of failed test, if only failed test should be run
968 </dd>
969 <dt><i>cov</i> (bool)</dt>
970 <dd>
971 flag indicating collection of coverage data is requested
972 </dd>
973 <dt><i>covname</i> (str)</dt>
974 <dd>
975 name of file to be used to assemble the coverage caches
976 filename
977 </dd>
978 <dt><i>coverase</i> (bool)</dt>
979 <dd>
980 flag indicating erasure of coverage data is requested
981 </dd>
982 <dt><i>syspath</i> (list of str)</dt>
983 <dd>
984 list of directories to be added to sys.path on the
985 remote side
986 </dd>
987 <dt><i>workdir</i> (str)</dt>
988 <dd>
989 path name of the working directory
990 </dd>
991 <dt><i>discover</i> (bool)</dt>
992 <dd>
993 flag indicating to discover the tests automatically
994 </dd>
995 <dt><i>discoveryStart</i> (str)</dt>
996 <dd>
997 directory to start auto-discovery at
998 </dd>
999 <dt><i>testCases</i> (list of str)</dt>
1000 <dd>
1001 list of test cases to be loaded
1002 </dd>
1003 <dt><i>debug</i> (bool)</dt>
1004 <dd>
1005 flag indicating to run unittest with debugging
1006 </dd>
1007 </dl>
1008 <a NAME="DebuggerInterfaceNone.remoteUTRun" ID="DebuggerInterfaceNone.remoteUTRun"></a>
1009 <h4>DebuggerInterfaceNone.remoteUTRun</h4>
1010 <b>remoteUTRun</b>(<i>debug, failfast</i>)
1011
1012 <p>
1013 Public method to start a unittest run.
1014 </p>
1015 <dl>
1016
1017 <dt><i>debug</i> (bool)</dt>
1018 <dd>
1019 flag indicating to run unittest with debugging
1020 </dd>
1021 <dt><i>failfast</i> (bool)</dt>
1022 <dd>
1023 flag indicating to stop at the first error
1024 </dd>
1025 </dl>
1026 <a NAME="DebuggerInterfaceNone.remoteUTStop" ID="DebuggerInterfaceNone.remoteUTStop"></a>
1027 <h4>DebuggerInterfaceNone.remoteUTStop</h4>
1028 <b>remoteUTStop</b>(<i></i>)
1029
1030 <p>
1031 public method to stop a unittest run.
1032 </p>
1033 <a NAME="DebuggerInterfaceNone.remoteWatchpoint" ID="DebuggerInterfaceNone.remoteWatchpoint"></a> 905 <a NAME="DebuggerInterfaceNone.remoteWatchpoint" ID="DebuggerInterfaceNone.remoteWatchpoint"></a>
1034 <h4>DebuggerInterfaceNone.remoteWatchpoint</h4> 906 <h4>DebuggerInterfaceNone.remoteWatchpoint</h4>
1035 <b>remoteWatchpoint</b>(<i>debuggerId, cond, setWatch, temp=False</i>) 907 <b>remoteWatchpoint</b>(<i>debuggerId, cond, setWatch, temp=False</i>)
1036 908
1037 <p> 909 <p>

eric ide

mercurial