1094 lines
157 KiB
HTML
1094 lines
157 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title id="head-title">report.html</title>
|
|
<style type="text/css">body {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-size: 12px;
|
|
/* do not increase min-width as some may use split screens */
|
|
min-width: 800px;
|
|
color: #999;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
color: black;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 16px;
|
|
color: black;
|
|
}
|
|
|
|
p {
|
|
color: black;
|
|
}
|
|
|
|
a {
|
|
color: #999;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
/******************************
|
|
* SUMMARY INFORMATION
|
|
******************************/
|
|
#environment td {
|
|
padding: 5px;
|
|
border: 1px solid #e6e6e6;
|
|
vertical-align: top;
|
|
}
|
|
#environment tr:nth-child(odd) {
|
|
background-color: #f6f6f6;
|
|
}
|
|
#environment ul {
|
|
margin: 0;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/******************************
|
|
* TEST RESULT COLORS
|
|
******************************/
|
|
span.passed,
|
|
.passed .col-result {
|
|
color: green;
|
|
}
|
|
|
|
span.skipped,
|
|
span.xfailed,
|
|
span.rerun,
|
|
.skipped .col-result,
|
|
.xfailed .col-result,
|
|
.rerun .col-result {
|
|
color: orange;
|
|
}
|
|
|
|
span.error,
|
|
span.failed,
|
|
span.xpassed,
|
|
.error .col-result,
|
|
.failed .col-result,
|
|
.xpassed .col-result {
|
|
color: red;
|
|
}
|
|
|
|
.col-links__extra {
|
|
margin-right: 3px;
|
|
}
|
|
|
|
/******************************
|
|
* RESULTS TABLE
|
|
*
|
|
* 1. Table Layout
|
|
* 2. Extra
|
|
* 3. Sorting items
|
|
*
|
|
******************************/
|
|
/*------------------
|
|
* 1. Table Layout
|
|
*------------------*/
|
|
#results-table {
|
|
border: 1px solid #e6e6e6;
|
|
color: #999;
|
|
font-size: 12px;
|
|
width: 100%;
|
|
}
|
|
#results-table th,
|
|
#results-table td {
|
|
padding: 5px;
|
|
border: 1px solid #e6e6e6;
|
|
text-align: left;
|
|
}
|
|
#results-table th {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/*------------------
|
|
* 2. Extra
|
|
*------------------*/
|
|
.logwrapper {
|
|
max-height: 230px;
|
|
overflow-y: scroll;
|
|
background-color: #e6e6e6;
|
|
}
|
|
.logwrapper.expanded {
|
|
max-height: none;
|
|
}
|
|
.logwrapper.expanded .logexpander:after {
|
|
content: "collapse [-]";
|
|
}
|
|
.logwrapper .logexpander {
|
|
z-index: 1;
|
|
position: sticky;
|
|
top: 10px;
|
|
width: max-content;
|
|
border: 1px solid;
|
|
border-radius: 3px;
|
|
padding: 5px 7px;
|
|
margin: 10px 0 10px calc(100% - 80px);
|
|
cursor: pointer;
|
|
background-color: #e6e6e6;
|
|
}
|
|
.logwrapper .logexpander:after {
|
|
content: "expand [+]";
|
|
}
|
|
.logwrapper .logexpander:hover {
|
|
color: #000;
|
|
border-color: #000;
|
|
}
|
|
.logwrapper .log {
|
|
min-height: 40px;
|
|
position: relative;
|
|
top: -50px;
|
|
height: calc(100% + 50px);
|
|
border: 1px solid #e6e6e6;
|
|
color: black;
|
|
display: block;
|
|
font-family: "Courier New", Courier, monospace;
|
|
padding: 5px;
|
|
padding-right: 80px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
div.media {
|
|
border: 1px solid #e6e6e6;
|
|
float: right;
|
|
height: 240px;
|
|
margin: 0 5px;
|
|
overflow: hidden;
|
|
width: 320px;
|
|
}
|
|
|
|
.media-container {
|
|
display: grid;
|
|
grid-template-columns: 25px auto 25px;
|
|
align-items: center;
|
|
flex: 1 1;
|
|
overflow: hidden;
|
|
height: 200px;
|
|
}
|
|
|
|
.media-container--fullscreen {
|
|
grid-template-columns: 0px auto 0px;
|
|
}
|
|
|
|
.media-container__nav--right,
|
|
.media-container__nav--left {
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.media-container__viewport {
|
|
cursor: pointer;
|
|
text-align: center;
|
|
height: inherit;
|
|
}
|
|
.media-container__viewport img,
|
|
.media-container__viewport video {
|
|
object-fit: cover;
|
|
width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.media__name,
|
|
.media__counter {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
flex: 0 0 25px;
|
|
align-items: center;
|
|
}
|
|
|
|
.collapsible td:not(.col-links) {
|
|
cursor: pointer;
|
|
}
|
|
.collapsible td:not(.col-links):hover::after {
|
|
color: #bbb;
|
|
font-style: italic;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.col-result {
|
|
width: 130px;
|
|
}
|
|
.col-result:hover::after {
|
|
content: " (hide details)";
|
|
}
|
|
|
|
.col-result.collapsed:hover::after {
|
|
content: " (show details)";
|
|
}
|
|
|
|
#environment-header h2:hover::after {
|
|
content: " (hide details)";
|
|
color: #bbb;
|
|
font-style: italic;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#environment-header.collapsed h2:hover::after {
|
|
content: " (show details)";
|
|
color: #bbb;
|
|
font-style: italic;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/*------------------
|
|
* 3. Sorting items
|
|
*------------------*/
|
|
.sortable {
|
|
cursor: pointer;
|
|
}
|
|
.sortable.desc:after {
|
|
content: " ";
|
|
position: relative;
|
|
left: 5px;
|
|
bottom: -12.5px;
|
|
border: 10px solid #4caf50;
|
|
border-bottom: 0;
|
|
border-left-color: transparent;
|
|
border-right-color: transparent;
|
|
}
|
|
.sortable.asc:after {
|
|
content: " ";
|
|
position: relative;
|
|
left: 5px;
|
|
bottom: 12.5px;
|
|
border: 10px solid #4caf50;
|
|
border-top: 0;
|
|
border-left-color: transparent;
|
|
border-right-color: transparent;
|
|
}
|
|
|
|
.hidden, .summary__reload__button.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.summary__data {
|
|
flex: 0 0 550px;
|
|
}
|
|
.summary__reload {
|
|
flex: 1 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.summary__reload__button {
|
|
flex: 0 0 300px;
|
|
display: flex;
|
|
color: white;
|
|
font-weight: bold;
|
|
background-color: #4caf50;
|
|
text-align: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
}
|
|
.summary__reload__button:hover {
|
|
background-color: #46a049;
|
|
}
|
|
.summary__spacer {
|
|
flex: 0 0 550px;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.filters,
|
|
.collapse {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.filters button,
|
|
.collapse button {
|
|
color: #999;
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
.filters button:hover,
|
|
.collapse button:hover {
|
|
color: #ccc;
|
|
}
|
|
|
|
.filter__label {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<h1 id="title">report.html</h1>
|
|
<p>Report generated on 23-Mar-2026 at 04:57:52 by <a href="https://pypi.python.org/pypi/pytest-html">pytest-html</a>
|
|
v4.2.0</p>
|
|
<div id="environment-header">
|
|
<h2>Environment</h2>
|
|
</div>
|
|
<table id="environment"></table>
|
|
<!-- TEMPLATES -->
|
|
<template id="template_environment_row">
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</template>
|
|
<template id="template_results-table__body--empty">
|
|
<tbody class="results-table-row">
|
|
<tr id="not-found-message">
|
|
<td colspan="4">No results found. Check the filters.</td>
|
|
</tr>
|
|
</tbody>
|
|
</template>
|
|
<template id="template_results-table__tbody">
|
|
<tbody class="results-table-row">
|
|
<tr class="collapsible">
|
|
</tr>
|
|
<tr class="extras-row">
|
|
<td class="extra" colspan="4">
|
|
<div class="extraHTML"></div>
|
|
<div class="media">
|
|
<div class="media-container">
|
|
<div class="media-container__nav--left"><</div>
|
|
<div class="media-container__viewport">
|
|
<img src="" />
|
|
<video controls>
|
|
<source src="" type="video/mp4">
|
|
</video>
|
|
</div>
|
|
<div class="media-container__nav--right">></div>
|
|
</div>
|
|
<div class="media__name"></div>
|
|
<div class="media__counter"></div>
|
|
</div>
|
|
<div class="logwrapper">
|
|
<div class="logexpander"></div>
|
|
<div class="log"></div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</template>
|
|
<!-- END TEMPLATES -->
|
|
<div class="summary">
|
|
<div class="summary__data">
|
|
<h2>Summary</h2>
|
|
<div class="additional-summary prefix">
|
|
</div>
|
|
<p class="run-count">130 tests took 00:03:16.</p>
|
|
<p class="filter">(Un)check the boxes to filter the results.</p>
|
|
<div class="summary__reload">
|
|
<div class="summary__reload__button hidden" onclick="location.reload()">
|
|
<div>There are still tests running. <br />Reload this page to get the latest results!</div>
|
|
</div>
|
|
</div>
|
|
<div class="summary__spacer"></div>
|
|
<div class="controls">
|
|
<div class="filters">
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="failed" >
|
|
<span class="failed">26 Failed,</span>
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="passed" >
|
|
<span class="passed">104 Passed,</span>
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="skipped" >
|
|
<span class="skipped">3 Skipped,</span>
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="xfailed" disabled>
|
|
<span class="xfailed">0 Expected failures,</span>
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="xpassed" disabled>
|
|
<span class="xpassed">0 Unexpected passes,</span>
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="error" disabled>
|
|
<span class="error">0 Errors,</span>
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="rerun" disabled>
|
|
<span class="rerun">0 Reruns</span>
|
|
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="retried" disabled>
|
|
<span class="retried">0 Retried,</span>
|
|
</div>
|
|
<div class="collapse">
|
|
<button id="show_all_details">Show all details</button> / <button id="hide_all_details">Hide all details</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="additional-summary summary">
|
|
</div>
|
|
<div class="additional-summary postfix">
|
|
</div>
|
|
</div>
|
|
<table id="results-table">
|
|
<thead id="results-table-head">
|
|
<tr>
|
|
<th class="sortable" data-column-type="result">Result</th>
|
|
<th class="sortable" data-column-type="testId">Test</th>
|
|
<th class="sortable" data-column-type="duration">Duration</th>
|
|
<th>Links</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
<footer>
|
|
<div id="data-container" data-jsonblob="{"environment": {"Python": "3.11.9", "Platform": "Windows-10-10.0.26200-SP0", "Packages": {"pytest": "9.0.2", "pluggy": "1.6.0"}, "Plugins": {"anyio": "4.12.1", "asyncio": "1.3.0", "cov": "7.1.0", "html": "4.2.0", "json-report": "1.5.0", "metadata": "3.1.1", "respx": "0.22.0"}}, "tests": {"testing/tests/test_api.py::TestCourtsEndpoint::test_returns_200": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestCourtsEndpoint::test_returns_200", "duration": "799 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCourtsEndpoint::test_returns_200</td>", "<td class=\"col-duration\">799 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:47 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud?size=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestCourtsEndpoint::test_response_has_content_key": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_api.py::TestCourtsEndpoint::test_response_has_content_key", "duration": "80 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCourtsEndpoint::test_response_has_content_key</td>", "<td class=\"col-duration\">80 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert &#x27;content&#x27; in {&#x27;filterList&#x27;: [{&#x27;facetValueList&#x27;: [{&#x27;count&#x27;: 31, &#x27;text&#x27;: &#x27;Okresn\u00fd s\u00fad&#x27;}, {&#x27;count&#x27;: 8, &#x27;text&#x27;: &#x27;Krajsk\u00fd s\u00fad&#x27;}, {&#x27;count...{&#x27;count&#x27;: 2, &#x27;text&#x27;: &#x27;Okres Pezinok&#x27;}, ...], &#x27;filterName&#x27;: &#x27;okres_string&#x27;}], &#x27;numFound&#x27;: 50, &#x27;page&#x27;: 0, &#x27;size&#x27;: 5, ...}\n\n----------------------------- Captured stderr call -----------------------------\n04:54:47 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud?size=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestCourtsEndpoint::test_total_elements_is_positive": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_api.py::TestCourtsEndpoint::test_total_elements_is_positive", "duration": "43 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCourtsEndpoint::test_total_elements_is_positive</td>", "<td class=\"col-duration\">43 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert 0 &gt; 0\n + where 0 = &lt;built-in method get of dict object at 0x000002A0A97327C0&gt;(&#x27;totalElements&#x27;, 0)\n + where &lt;built-in method get of dict object at 0x000002A0A97327C0&gt; = {&#x27;filterList&#x27;: [{&#x27;facetValueList&#x27;: [{&#x27;count&#x27;: 31, &#x27;text&#x27;: &#x27;Okresn\u00fd s\u00fad&#x27;}, {&#x27;count&#x27;: 8, &#x27;text&#x27;: &#x27;Krajsk\u00fd s\u00fad&#x27;}, {&#x27;count...{&#x27;count&#x27;: 2, &#x27;text&#x27;: &#x27;Okres Pezinok&#x27;}, ...], &#x27;filterName&#x27;: &#x27;okres_string&#x27;}], &#x27;numFound&#x27;: 50, &#x27;page&#x27;: 0, &#x27;size&#x27;: 1, ...}.get\n\n----------------------------- Captured stderr call -----------------------------\n04:54:47 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud?size=1 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestCourtsEndpoint::test_court_by_id_returns_valid_record": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestCourtsEndpoint::test_court_by_id_returns_valid_record", "duration": "00:00:02", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCourtsEndpoint::test_court_by_id_returns_valid_record</td>", "<td class=\"col-duration\">00:00:02</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:48 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_175 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestCourtsEndpoint::test_court_autocomplete_returns_list": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestCourtsEndpoint::test_court_autocomplete_returns_list", "duration": "42 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCourtsEndpoint::test_court_autocomplete_returns_list</td>", "<td class=\"col-duration\">42 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:50 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/autocomplete?query=Bratislava&amp;limit=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestCourtsEndpoint::test_nonexistent_court_returns_404": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestCourtsEndpoint::test_nonexistent_court_returns_404", "duration": "35 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCourtsEndpoint::test_nonexistent_court_returns_404</td>", "<td class=\"col-duration\">35 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:50 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_999999999 &quot;HTTP/1.1 404 Not Found&quot;\n"}], "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_returns_200": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_returns_200", "duration": "531 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_returns_200</td>", "<td class=\"col-duration\">531 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:50 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sudca?size=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_autocomplete_returns_results": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_autocomplete_returns_results", "duration": "35 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestJudgesEndpoint::test_judge_autocomplete_returns_results</td>", "<td class=\"col-duration\">35 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:51 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sudca/autocomplete?query=Nov%C3%A1k&amp;limit=10 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_by_kraj": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_by_kraj", "duration": "192 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_by_kraj</td>", "<td class=\"col-duration\">192 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:51 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sudca?krajFacetFilter=Bratislavsk%C3%BD+kraj&amp;size=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_pagination_page_zero": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_pagination_page_zero", "duration": "122 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestJudgesEndpoint::test_judge_search_pagination_page_zero</td>", "<td class=\"col-duration\">122 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert &#x27;content&#x27; in {&#x27;error&#x27;: &#x27;Internal Server Error&#x27;, &#x27;errorId&#x27;: &#x27;6455991b-7386-44b2-b585-13cc1e4f9858&#x27;, &#x27;message&#x27;: &#x27;-10&#x27;, &#x27;path&#x27;: &#x27;/v1/sudca&#x27;, ...}\n\n----------------------------- Captured stderr call -----------------------------\n04:54:51 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sudca?page=0&amp;size=10 &quot;HTTP/1.1 500 Internal Server Error&quot;\n"}], "testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_search_returns_200": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_search_returns_200", "duration": "547 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_search_returns_200</td>", "<td class=\"col-duration\">547 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:52 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/rozhodnutie?size=3 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_search_with_date_range": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_search_with_date_range", "duration": "514 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_search_with_date_range</td>", "<td class=\"col-duration\">514 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:52 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/rozhodnutie?vydaniaOd=01.01.2023&amp;vydaniaDo=31.12.2023&amp;size=3 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_autocomplete": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_autocomplete", "duration": "139 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestDecisionsEndpoint::test_decision_autocomplete</td>", "<td class=\"col-duration\">139 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:52 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/rozhodnutie/autocomplete?query=Rozsudok&amp;limit=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestContractsEndpoint::test_contract_search_returns_200": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestContractsEndpoint::test_contract_search_returns_200", "duration": "00:00:01", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestContractsEndpoint::test_contract_search_returns_200</td>", "<td class=\"col-duration\">00:00:01</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:53 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/zmluvy?size=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestContractsEndpoint::test_contract_search_by_typ_dokumentu": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestContractsEndpoint::test_contract_search_by_typ_dokumentu", "duration": "201 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestContractsEndpoint::test_contract_search_by_typ_dokumentu</td>", "<td class=\"col-duration\">201 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/zmluvy?typDokumentuFacetFilter=ZMLUVA&amp;size=3 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestCivilProceedingsEndpoint::test_civil_proceedings_returns_200": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestCivilProceedingsEndpoint::test_civil_proceedings_returns_200", "duration": "40 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCivilProceedingsEndpoint::test_civil_proceedings_returns_200</td>", "<td class=\"col-duration\">40 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/obcianPojednavania?size=3 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestCivilProceedingsEndpoint::test_civil_proceedings_date_filter": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_api.py::TestCivilProceedingsEndpoint::test_civil_proceedings_date_filter", "duration": "39 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestCivilProceedingsEndpoint::test_civil_proceedings_date_filter</td>", "<td class=\"col-duration\">39 ms</td>", "<td class=\"col-links\"></td>"], "log": "E assert 500 == 200\n + where 500 = &lt;Response [500 Internal Server Error]&gt;.status_code\n\n----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/obcianPojednavania?pojednavaniaOd=01.01.2024&amp;pojednavaniaDo=31.01.2024&amp;size=3 &quot;HTTP/1.1 500 Internal Server Error&quot;\n"}], "testing/tests/test_api.py::TestAdminProceedingsEndpoint::test_admin_proceedings_returns_200": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestAdminProceedingsEndpoint::test_admin_proceedings_returns_200", "duration": "38 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestAdminProceedingsEndpoint::test_admin_proceedings_returns_200</td>", "<td class=\"col-duration\">38 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/spravneKonanie?size=3 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_api.py::TestAdminProceedingsEndpoint::test_admin_proceedings_autocomplete": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_api.py::TestAdminProceedingsEndpoint::test_admin_proceedings_autocomplete", "duration": "65 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_api.py::TestAdminProceedingsEndpoint::test_admin_proceedings_autocomplete</td>", "<td class=\"col-duration\">65 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/spravneKonanie/autocomplete?query=test&amp;limit=5 &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_successful_request_returns_dict": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_successful_request_returns_dict", "duration": "38 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_successful_request_returns_dict</td>", "<td class=\"col-duration\">38 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud &quot;HTTP/1.1 200 OK&quot;\n04:54:54 - INFO - \ud83d\udd87\ufe0f Request URL: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud\n04:54:54 - INFO - \u2705 Success: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_cache_hit_on_second_call": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_cache_hit_on_second_call", "duration": "15 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_cache_hit_on_second_call</td>", "<td class=\"col-duration\">15 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud &quot;HTTP/1.1 200 OK&quot;\n04:54:54 - INFO - \ud83d\udd87\ufe0f Request URL: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud\n04:54:54 - INFO - \u2705 Success: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud\n04:54:54 - INFO - \ud83d\udcbe Cache hit\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_http_404_returns_error_dict": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_http_404_returns_error_dict", "duration": "19 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_http_404_returns_error_dict</td>", "<td class=\"col-duration\">19 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_99999 &quot;HTTP/1.1 404 Not Found&quot;\n04:54:54 - INFO - \u274c HTTP error: 404 - Not Found\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_http_500_returns_error_dict": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_http_500_returns_error_dict", "duration": "15 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_http_500_returns_error_dict</td>", "<td class=\"col-duration\">15 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud &quot;HTTP/1.1 500 Internal Server Error&quot;\n04:54:54 - INFO - \u274c HTTP error: 500 - Server Error\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_remove_keys_strips_specified_fields": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_remove_keys_strips_specified_fields", "duration": "16 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_remove_keys_strips_specified_fields</td>", "<td class=\"col-duration\">16 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_1 &quot;HTTP/1.1 200 OK&quot;\n04:54:54 - INFO - \ud83d\udd87\ufe0f Request URL: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_1\n04:54:54 - INFO - \u2705 Success: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_1\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_remove_keys_missing_key_no_error": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_remove_keys_missing_key_no_error", "duration": "17 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_remove_keys_missing_key_no_error</td>", "<td class=\"col-duration\">17 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_1 &quot;HTTP/1.1 200 OK&quot;\n04:54:54 - INFO - \ud83d\udd87\ufe0f Request URL: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_1\n04:54:54 - INFO - \u2705 Success: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud/sud_1\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_log_callback_is_called": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_log_callback_is_called", "duration": "16 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_log_callback_is_called</td>", "<td class=\"col-duration\">16 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud &quot;HTTP/1.1 200 OK&quot;\n04:54:54 - INFO - \ud83d\udd87\ufe0f Request URL: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud\n04:54:54 - INFO - \u2705 Success: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_params_are_passed_in_request": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_params_are_passed_in_request", "duration": "15 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_params_are_passed_in_request</td>", "<td class=\"col-duration\">15 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{\n &quot;query&quot;: &quot;Bratislava&quot;,\n &quot;size&quot;: 10\n}\n04:54:54 - INFO - HTTP Request: GET https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud?query=Bratislava&amp;size=10 &quot;HTTP/1.1 200 OK&quot;\n04:54:54 - INFO - \ud83d\udd87\ufe0f Request URL: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud?query=Bratislava&amp;size=10\n04:54:54 - INFO - \u2705 Success: https://obcan.justice.sk/pilot/api/ress-isu-service/v1/sud\n"}], "testing/tests/test_fetch.py::TestFetchApiData::test_connect_error_returns_error_dict": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_fetch.py::TestFetchApiData::test_connect_error_returns_error_dict", "duration": "13 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_fetch.py::TestFetchApiData::test_connect_error_returns_error_dict</td>", "<td class=\"col-duration\">13 ms</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:54:54 - INFO - \ud83d\udd28 Input parameters:\n{}\n04:54:54 - INFO - \u274c Request error: Connection refused\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[court_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[court_search-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[court_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:55:01 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[judge_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[judge_search-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[judge_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:55:08 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[no_legal_advice-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[no_legal_advice-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[no_legal_advice-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert 0 &gt; 0\n + where 0 = len(&#x27;&#x27;)\n + where &#x27;&#x27; = &lt;built-in method strip of str object at 0x00007FFB4689C6E0&gt;()\n + where &lt;built-in method strip of str object at 0x00007FFB4689C6E0&gt; = &#x27;&#x27;.strip\n\n----------------------------- Captured stderr call -----------------------------\n04:55:15 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[slovak_response-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[slovak_response-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_is_not_empty[slovak_response-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert 0 &gt; 0\n + where 0 = len(&#x27;&#x27;)\n + where &#x27;&#x27; = &lt;built-in method strip of str object at 0x00007FFB4689C6E0&gt;()\n + where &lt;built-in method strip of str object at 0x00007FFB4689C6E0&gt; = &#x27;&#x27;.strip\n\n----------------------------- Captured stderr call -----------------------------\n04:55:22 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[court_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[court_search-qwen3.5:cloud]", "duration": "00:00:06", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[court_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:06</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:55:28 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[judge_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[judge_search-qwen3.5:cloud]", "duration": "00:00:04", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[judge_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:04</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:55:32 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[no_legal_advice-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[no_legal_advice-qwen3.5:cloud]", "duration": "00:00:06", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[no_legal_advice-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:06</td>", "<td class=\"col-links\"></td>"], "log": "E assert False\n + where False = any(&lt;generator object TestLLMResponses.test_response_in_slovak.&lt;locals&gt;.&lt;genexpr&gt; at 0x000002A0A9762340&gt;)\n\n----------------------------- Captured stderr call -----------------------------\n04:55:39 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[slovak_response-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[slovak_response-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_in_slovak[slovak_response-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:55:46 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[court_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[court_search-qwen3.5:cloud]", "duration": "00:00:10", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[court_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:10</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:55:56 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[judge_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[judge_search-qwen3.5:cloud]", "duration": "00:00:08", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[judge_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:08</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:56:03 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[no_legal_advice-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[no_legal_advice-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[no_legal_advice-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "E assert False\n + where False = any(&lt;generator object TestLLMResponses.test_expected_keywords_present.&lt;locals&gt;.&lt;genexpr&gt; at 0x000002A0A97627A0&gt;)\n\n----------------------------- Captured stderr call -----------------------------\n04:56:10 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[slovak_response-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[slovak_response-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_expected_keywords_present[slovak_response-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "E assert False\n + where False = any(&lt;generator object TestLLMResponses.test_expected_keywords_present.&lt;locals&gt;.&lt;genexpr&gt; at 0x000002A0A9763A00&gt;)\n\n----------------------------- Captured stderr call -----------------------------\n04:56:17 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[court_search-qwen3.5:cloud]": [{"extras": [], "result": "Skipped", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[court_search-qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Skipped</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[court_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "(&#x27;D:\\\\Projects\\\\PycharmProjects\\\\ai-lawyer-agent\\\\testing\\\\tests\\\\test_llm_compare.py&#x27;, 95, &#x27;Skipped: No forbidden_keywords defined&#x27;)\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[judge_search-qwen3.5:cloud]": [{"extras": [], "result": "Skipped", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[judge_search-qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Skipped</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[judge_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "(&#x27;D:\\\\Projects\\\\PycharmProjects\\\\ai-lawyer-agent\\\\testing\\\\tests\\\\test_llm_compare.py&#x27;, 95, &#x27;Skipped: No forbidden_keywords defined&#x27;)\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[no_legal_advice-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[no_legal_advice-qwen3.5:cloud]", "duration": "00:00:10", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[no_legal_advice-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:10</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:56:27 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[slovak_response-qwen3.5:cloud]": [{"extras": [], "result": "Skipped", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[slovak_response-qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Skipped</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_forbidden_keywords_absent[slovak_response-qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "(&#x27;D:\\\\Projects\\\\PycharmProjects\\\\ai-lawyer-agent\\\\testing\\\\tests\\\\test_llm_compare.py&#x27;, 95, &#x27;Skipped: No forbidden_keywords defined&#x27;)\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[court_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[court_search-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[court_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:56:33 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[judge_search-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[judge_search-qwen3.5:cloud]", "duration": "00:00:08", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[judge_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:08</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:56:41 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[no_legal_advice-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[no_legal_advice-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[no_legal_advice-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:56:48 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[slovak_response-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[slovak_response-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_time_under_threshold[slovak_response-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:56:54 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[court_search-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[court_search-qwen3.5:cloud]", "duration": "00:00:09", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[court_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:09</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert 10 &lt; 0\n + where 0 = len(&#x27;&#x27;)\n\n----------------------------- Captured stderr call -----------------------------\n04:57:03 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[judge_search-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[judge_search-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[judge_search-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert 10 &lt; 0\n + where 0 = len(&#x27;&#x27;)\n\n----------------------------- Captured stderr call -----------------------------\n04:57:10 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[no_legal_advice-qwen3.5:cloud]": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[no_legal_advice-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[no_legal_advice-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert 10 &lt; 0\n + where 0 = len(&#x27;&#x27;)\n\n----------------------------- Captured stderr call -----------------------------\n04:57:17 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[slovak_response-qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[slovak_response-qwen3.5:cloud]", "duration": "00:00:07", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMResponses::test_response_length_reasonable[slovak_response-qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:07</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:57:24 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_llm_compare.py::TestLLMBenchmark::test_collect_benchmark_data[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_llm_compare.py::TestLLMBenchmark::test_collect_benchmark_data[qwen3.5:cloud]", "duration": "00:00:27", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_llm_compare.py::TestLLMBenchmark::test_collect_benchmark_data[qwen3.5:cloud]</td>", "<td class=\"col-duration\">00:00:27</td>", "<td class=\"col-links\"></td>"], "log": "----------------------------- Captured stderr call -----------------------------\n04:57:31 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n04:57:38 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n04:57:45 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n04:57:51 - INFO - HTTP Request: POST http://localhost:11434/v1/chat/completions &quot;HTTP/1.1 200 OK&quot;\n"}], "testing/tests/test_schemas.py::TestCourtByID::test_digit_gets_prefix": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestCourtByID::test_digit_gets_prefix", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestCourtByID::test_digit_gets_prefix</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestCourtByID::test_already_prefixed_unchanged": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestCourtByID::test_already_prefixed_unchanged", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestCourtByID::test_already_prefixed_unchanged</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestCourtByID::test_strips_whitespace": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestCourtByID::test_strips_whitespace", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestCourtByID::test_strips_whitespace</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestCourtByID::test_single_digit": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestCourtByID::test_single_digit", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestCourtByID::test_single_digit</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestCourtByID::test_large_number": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestCourtByID::test_large_number", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestCourtByID::test_large_number</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestCourtByID::test_non_numeric_string_unchanged": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestCourtByID::test_non_numeric_string_unchanged", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestCourtByID::test_non_numeric_string_unchanged</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestCourtByID::test_whitespace_digit_combination": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestCourtByID::test_whitespace_digit_combination", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestCourtByID::test_whitespace_digit_combination</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestJudgeByID::test_digit_gets_prefix": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestJudgeByID::test_digit_gets_prefix", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestJudgeByID::test_digit_gets_prefix</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestJudgeByID::test_already_prefixed_unchanged": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestJudgeByID::test_already_prefixed_unchanged", "duration": "8 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestJudgeByID::test_already_prefixed_unchanged</td>", "<td class=\"col-duration\">8 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestJudgeByID::test_strips_whitespace": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestJudgeByID::test_strips_whitespace", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestJudgeByID::test_strips_whitespace</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestJudgeByID::test_large_number": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestJudgeByID::test_large_number", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestJudgeByID::test_large_number</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestJudgeByID::test_non_numeric_string_unchanged": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestJudgeByID::test_non_numeric_string_unchanged", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestJudgeByID::test_non_numeric_string_unchanged</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_digit_gets_prefix": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_digit_gets_prefix", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAdminProceedingsByID::test_digit_gets_prefix</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_already_prefixed_unchanged": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_already_prefixed_unchanged", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAdminProceedingsByID::test_already_prefixed_unchanged</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_strips_whitespace": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_strips_whitespace", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAdminProceedingsByID::test_strips_whitespace</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_single_digit": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_single_digit", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAdminProceedingsByID::test_single_digit</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_non_numeric_string_unchanged": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAdminProceedingsByID::test_non_numeric_string_unchanged", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAdminProceedingsByID::test_non_numeric_string_unchanged</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_court_search_defaults_are_none": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_court_search_defaults_are_none", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_court_search_defaults_are_none</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_default_asc": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_default_asc", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_default_asc</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_desc_accepted": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_desc_accepted", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_desc_accepted</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_invalid_rejected": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_invalid_rejected", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_sort_direction_invalid_rejected</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_page_cannot_be_negative": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_page_cannot_be_negative", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_page_cannot_be_negative</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_size_cannot_be_zero": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_size_cannot_be_zero", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_size_cannot_be_zero</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_size_one_accepted": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_size_one_accepted", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_size_one_accepted</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestPaginationDefaults::test_page_zero_accepted": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestPaginationDefaults::test_page_zero_accepted", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestPaginationDefaults::test_page_zero_accepted</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestFacetFilters::test_court_search_facet_type_list": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestFacetFilters::test_court_search_facet_type_list", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestFacetFilters::test_court_search_facet_type_list</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestFacetFilters::test_judge_search_facet_kraj": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestFacetFilters::test_judge_search_facet_kraj", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestFacetFilters::test_judge_search_facet_kraj</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestFacetFilters::test_decision_search_forma_filter": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestFacetFilters::test_decision_search_forma_filter", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestFacetFilters::test_decision_search_forma_filter</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestFacetFilters::test_contract_search_typ_dokumentu": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestFacetFilters::test_contract_search_typ_dokumentu", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestFacetFilters::test_contract_search_typ_dokumentu</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestFacetFilters::test_civil_proceedings_usek_filter": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestFacetFilters::test_civil_proceedings_usek_filter", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestFacetFilters::test_civil_proceedings_usek_filter</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAutocomplete::test_court_autocomplete_limit_min_one": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAutocomplete::test_court_autocomplete_limit_min_one", "duration": "14 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAutocomplete::test_court_autocomplete_limit_min_one</td>", "<td class=\"col-duration\">14 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAutocomplete::test_court_autocomplete_limit_valid": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAutocomplete::test_court_autocomplete_limit_valid", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAutocomplete::test_court_autocomplete_limit_valid</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAutocomplete::test_judge_autocomplete_guid_sud": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAutocomplete::test_judge_autocomplete_guid_sud", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAutocomplete::test_judge_autocomplete_guid_sud</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAutocomplete::test_autocomplete_empty_query_accepted": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAutocomplete::test_autocomplete_empty_query_accepted", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAutocomplete::test_autocomplete_empty_query_accepted</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestAutocomplete::test_autocomplete_query_string": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestAutocomplete::test_autocomplete_query_string", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestAutocomplete::test_autocomplete_query_string</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_excludes_none_fields": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_excludes_none_fields", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_excludes_none_fields</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_full_params_included": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_full_params_included", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_full_params_included</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_empty_schema_dumps_empty_dict": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_empty_schema_dumps_empty_dict", "duration": "162 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_schemas.py::TestModelDumpExcludeNone::test_empty_schema_dumps_empty_dict</td>", "<td class=\"col-duration\">162 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert {&#x27;sortDirection&#x27;: &#x27;ASC&#x27;} == {}\n \n Left contains 1 more item:\n {&#x27;sortDirection&#x27;: &#x27;ASC&#x27;}\n Use -v to get more diff\n"}], "testing/tests/test_sys_prompt.py::TestPromptContainsModelName::test_model_name_appears_in_prompt[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestPromptContainsModelName::test_model_name_appears_in_prompt[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestPromptContainsModelName::test_model_name_appears_in_prompt[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_role_section[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_role_section[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_role_section[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_operational_constraints[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_operational_constraints[qwen3.5:cloud]", "duration": "4 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_operational_constraints[qwen3.5:cloud]</td>", "<td class=\"col-duration\">4 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_workflow_steps[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_workflow_steps[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_workflow_steps[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_error_recovery[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_error_recovery[qwen3.5:cloud]", "duration": "4 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_error_recovery[qwen3.5:cloud]</td>", "<td class=\"col-duration\">4 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_response_format[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_response_format[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestRequiredSections::test_has_response_format[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_courts_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_courts_mentioned[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestSupportedDomains::test_courts_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_judges_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_judges_mentioned[qwen3.5:cloud]", "duration": "4 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestSupportedDomains::test_judges_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">4 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_decisions_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_decisions_mentioned[qwen3.5:cloud]", "duration": "4 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestSupportedDomains::test_decisions_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">4 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_contracts_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_contracts_mentioned[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestSupportedDomains::test_contracts_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_civil_proceedings_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_civil_proceedings_mentioned[qwen3.5:cloud]", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestSupportedDomains::test_civil_proceedings_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_admin_proceedings_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestSupportedDomains::test_admin_proceedings_mentioned[qwen3.5:cloud]", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestSupportedDomains::test_admin_proceedings_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestConstraints::test_no_legal_advice_constraint[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestConstraints::test_no_legal_advice_constraint[qwen3.5:cloud]", "duration": "4 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestConstraints::test_no_legal_advice_constraint[qwen3.5:cloud]</td>", "<td class=\"col-duration\">4 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestConstraints::test_api_only_constraint[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestConstraints::test_api_only_constraint[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestConstraints::test_api_only_constraint[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestConstraints::test_slovak_language_requirement[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestConstraints::test_slovak_language_requirement[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestConstraints::test_slovak_language_requirement[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestConstraints::test_no_raw_json_rule[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestConstraints::test_no_raw_json_rule[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestConstraints::test_no_raw_json_rule[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestConstraints::test_no_speculate_rule[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestConstraints::test_no_speculate_rule[qwen3.5:cloud]", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestConstraints::test_no_speculate_rule[qwen3.5:cloud]</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestPaginationRules::test_page_starts_at_zero_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestPaginationRules::test_page_starts_at_zero_mentioned[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestPaginationRules::test_page_starts_at_zero_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestPaginationRules::test_autocomplete_preferred_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestPaginationRules::test_autocomplete_preferred_mentioned[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestPaginationRules::test_autocomplete_preferred_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestDateRules::test_date_format_dd_mm_yyyy_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestDateRules::test_date_format_dd_mm_yyyy_mentioned[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestDateRules::test_date_format_dd_mm_yyyy_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestDateRules::test_civil_date_field_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestDateRules::test_civil_date_field_mentioned[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestDateRules::test_civil_date_field_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestDateRules::test_decision_date_field_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestDateRules::test_decision_date_field_mentioned[qwen3.5:cloud]", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestDateRules::test_decision_date_field_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_sud_prefix_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_sud_prefix_mentioned[qwen3.5:cloud]", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_sud_prefix_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_sudca_prefix_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_sudca_prefix_mentioned[qwen3.5:cloud]", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_sudca_prefix_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_spravnekonanie_prefix_mentioned[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_spravnekonanie_prefix_mentioned[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestIDNormalizationRules::test_spravnekonanie_prefix_mentioned[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_is_not_empty[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_is_not_empty[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_is_not_empty[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_has_minimum_length[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_has_minimum_length[qwen3.5:cloud]", "duration": "2 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_has_minimum_length[qwen3.5:cloud]</td>", "<td class=\"col-duration\">2 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_has_reasonable_max_length[qwen3.5:cloud]": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_has_reasonable_max_length[qwen3.5:cloud]", "duration": "3 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_sys_prompt.py::TestPromptLength::test_prompt_has_reasonable_max_length[qwen3.5:cloud]</td>", "<td class=\"col-duration\">3 ms</td>", "<td class=\"col-links\"></td>"], "log": "No log output captured."}], "testing/tests/test_tools.py::TestCourtTools::test_court_search_calls_correct_url": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestCourtTools::test_court_search_calls_correct_url", "duration": "12 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestCourtTools::test_court_search_calls_correct_url</td>", "<td class=\"col-duration\">12 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/sud&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;court_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool court_search: 1 validation error for court_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;query&#x27;: &#x27;Bratislava&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestCourtTools::test_court_id_calls_correct_url": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestCourtTools::test_court_id_calls_correct_url", "duration": "14 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestCourtTools::test_court_id_calls_correct_url</td>", "<td class=\"col-duration\">14 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/sud/sud_175&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;court_id&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool court_id: 1 validation error for court_id_args\\nparams\\n Field required [type=missing, input_value={&#x27;id&#x27;: &#x27;175&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestCourtTools::test_court_id_removes_foto_key": [{"extras": [], "result": "Passed", "testId": "testing/tests/test_tools.py::TestCourtTools::test_court_id_removes_foto_key", "duration": "14 ms", "resultsTableRow": ["<td class=\"col-result\">Passed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestCourtTools::test_court_id_removes_foto_key</td>", "<td class=\"col-duration\">14 ms</td>", "<td class=\"col-links\"></td>"], "log": "------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;court_id&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool court_id: 1 validation error for court_id_args\\nparams\\n Field required [type=missing, input_value={&#x27;id&#x27;: &#x27;1&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestCourtTools::test_court_autocomplete_calls_correct_url": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestCourtTools::test_court_autocomplete_calls_correct_url", "duration": "11 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestCourtTools::test_court_autocomplete_calls_correct_url</td>", "<td class=\"col-duration\">11 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/sud/autocomplete&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;court_autocomplete&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool court_autocomplete: 1 validation error for court_autocomplete_args\\nparams\\n Field required [type=missing, input_value={&#x27;query&#x27;: &#x27;Kraj&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestJudgeTools::test_judge_search_calls_correct_url": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestJudgeTools::test_judge_search_calls_correct_url", "duration": "15 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestJudgeTools::test_judge_search_calls_correct_url</td>", "<td class=\"col-duration\">15 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/sudca&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;judge_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool judge_search: 1 validation error for judge_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;query&#x27;: &#x27;Nov\u00e1k&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestJudgeTools::test_judge_id_normalizes_digit_id": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestJudgeTools::test_judge_id_normalizes_digit_id", "duration": "13 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestJudgeTools::test_judge_id_normalizes_digit_id</td>", "<td class=\"col-duration\">13 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/sudca/sudca_1&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;judge_id&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool judge_id: 1 validation error for judge_id_args\\nparams\\n Field required [type=missing, input_value={&#x27;id&#x27;: &#x27;1&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestJudgeTools::test_judge_autocomplete_passes_guid_sud": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestJudgeTools::test_judge_autocomplete_passes_guid_sud", "duration": "11 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestJudgeTools::test_judge_autocomplete_passes_guid_sud</td>", "<td class=\"col-duration\">11 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/sudca/autocomplete&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;judge_autocomplete&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool judge_autocomplete: 1 validation error for judge_autocomplete_args\\nparams\\n Field required [type=missing, input_value={&#x27;query&#x27;: &#x27;Nov\u00e1k&#x27;, &#x27;guidSud&#x27;: &#x27;sud_100&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestDecisionTools::test_decision_search_with_date_range": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestDecisionTools::test_decision_search_with_date_range", "duration": "10 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestDecisionTools::test_decision_search_with_date_range</td>", "<td class=\"col-duration\">10 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/rozhodnutie&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;decision_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool decision_search: 1 validation error for decision_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;vydaniaOd&#x27;: &#x27;01.01.2024...ydaniaDo&#x27;: &#x27;31.01.2024&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestDecisionTools::test_decision_search_with_guid_sudca": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestDecisionTools::test_decision_search_with_guid_sudca", "duration": "10 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestDecisionTools::test_decision_search_with_guid_sudca</td>", "<td class=\"col-duration\">10 ms</td>", "<td class=\"col-links\"></td>"], "log": "E IndexError: list index out of range\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;decision_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool decision_search: 1 validation error for decision_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;guidSudca&#x27;: &#x27;sudca_1&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestContractTools::test_contract_search_with_guid_sud": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestContractTools::test_contract_search_with_guid_sud", "duration": "13 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestContractTools::test_contract_search_with_guid_sud</td>", "<td class=\"col-duration\">13 ms</td>", "<td class=\"col-links\"></td>"], "log": "E IndexError: list index out of range\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;contract_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool contract_search: 1 validation error for contract_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;guidSud&#x27;: &#x27;sud_7&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestContractTools::test_contract_search_typ_dokumentu_filter": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestContractTools::test_contract_search_typ_dokumentu_filter", "duration": "10 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestContractTools::test_contract_search_typ_dokumentu_filter</td>", "<td class=\"col-duration\">10 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/zmluvy&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;contract_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool contract_search: 1 validation error for contract_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;typDokumentuFacetFilter&#x27;: [&#x27;ZMLUVA&#x27;]}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestCivilAndAdminTools::test_civil_proceedings_search": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestCivilAndAdminTools::test_civil_proceedings_search", "duration": "16 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestCivilAndAdminTools::test_civil_proceedings_search</td>", "<td class=\"col-duration\">16 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/obcianPojednavania&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;civil_proceedings_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool civil_proceedings_search: 1 validation error for civil_proceedings_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;query&#x27;: &#x27;test&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestCivilAndAdminTools::test_admin_proceedings_search": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestCivilAndAdminTools::test_admin_proceedings_search", "duration": "11 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestCivilAndAdminTools::test_admin_proceedings_search</td>", "<td class=\"col-duration\">11 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/spravneKonanie&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;admin_proceedings_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool admin_proceedings_search: 1 validation error for admin_proceedings_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;query&#x27;: &#x27;test&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}], "testing/tests/test_tools.py::TestCivilAndAdminTools::test_civil_proceedings_date_params": [{"extras": [], "result": "Failed", "testId": "testing/tests/test_tools.py::TestCivilAndAdminTools::test_civil_proceedings_date_params", "duration": "13 ms", "resultsTableRow": ["<td class=\"col-result\">Failed</td>", "<td class=\"col-testId\">testing/tests/test_tools.py::TestCivilAndAdminTools::test_civil_proceedings_date_params</td>", "<td class=\"col-duration\">13 ms</td>", "<td class=\"col-links\"></td>"], "log": "E AssertionError: assert False\n + where False = &lt;Route &lt;Scheme eq &#x27;https&#x27;&gt; AND &lt;Host eq &#x27;obcan.justice.sk&#x27;&gt; AND &lt;Path eq &#x27;/pilot/api/ress-isu-service/v1/obcianPojednavania&#x27;&gt; AND &lt;Method eq &#x27;GET&#x27;&gt;&gt;.called\n\n------------------------------ Captured log call -------------------------------\nWARNING openai.agents:_error_tracing.py:16 No span to add error {&#x27;message&#x27;: &#x27;Error running tool (non-fatal)&#x27;, &#x27;data&#x27;: {&#x27;tool_name&#x27;: &#x27;civil_proceedings_search&#x27;, &#x27;error&#x27;: &quot;Invalid JSON input for tool civil_proceedings_search: 1 validation error for civil_proceedings_search_args\\nparams\\n Field required [type=missing, input_value={&#x27;pojednavaniaOd&#x27;: &#x27;01.01...avaniaDo&#x27;: &#x27;31.01.2024&#x27;}, input_type=dict]\\n For further information visit https://errors.pydantic.dev/2.12/v/missing&quot;}} to\n\n"}]}, "renderCollapsed": ["passed"], "initialSort": "result", "title": "report.html"}"></div>
|
|
<script>
|
|
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
const { getCollapsedCategory, setCollapsedIds } = require('./storage.js')
|
|
|
|
class DataManager {
|
|
setManager(data) {
|
|
const collapsedCategories = [...getCollapsedCategory(data.renderCollapsed)]
|
|
const collapsedIds = []
|
|
const tests = Object.values(data.tests).flat().map((test, index) => {
|
|
const collapsed = collapsedCategories.includes(test.result.toLowerCase())
|
|
const id = `test_${index}`
|
|
if (collapsed) {
|
|
collapsedIds.push(id)
|
|
}
|
|
return {
|
|
...test,
|
|
id,
|
|
collapsed,
|
|
}
|
|
})
|
|
const dataBlob = { ...data, tests }
|
|
this.data = { ...dataBlob }
|
|
this.renderData = { ...dataBlob }
|
|
setCollapsedIds(collapsedIds)
|
|
}
|
|
|
|
get allData() {
|
|
return { ...this.data }
|
|
}
|
|
|
|
resetRender() {
|
|
this.renderData = { ...this.data }
|
|
}
|
|
|
|
setRender(data) {
|
|
this.renderData.tests = [...data]
|
|
}
|
|
|
|
toggleCollapsedItem(id) {
|
|
this.renderData.tests = this.renderData.tests.map((test) =>
|
|
test.id === id ? { ...test, collapsed: !test.collapsed } : test,
|
|
)
|
|
}
|
|
|
|
set allCollapsed(collapsed) {
|
|
this.renderData = { ...this.renderData, tests: [...this.renderData.tests.map((test) => (
|
|
{ ...test, collapsed }
|
|
))] }
|
|
}
|
|
|
|
get testSubset() {
|
|
return [...this.renderData.tests]
|
|
}
|
|
|
|
get environment() {
|
|
return this.renderData.environment
|
|
}
|
|
|
|
get initialSort() {
|
|
return this.data.initialSort
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
manager: new DataManager(),
|
|
}
|
|
|
|
},{"./storage.js":8}],2:[function(require,module,exports){
|
|
const mediaViewer = require('./mediaviewer.js')
|
|
const templateEnvRow = document.getElementById('template_environment_row')
|
|
const templateResult = document.getElementById('template_results-table__tbody')
|
|
|
|
function htmlToElements(html) {
|
|
const temp = document.createElement('template')
|
|
temp.innerHTML = html
|
|
return temp.content.childNodes
|
|
}
|
|
|
|
const find = (selector, elem) => {
|
|
if (!elem) {
|
|
elem = document
|
|
}
|
|
return elem.querySelector(selector)
|
|
}
|
|
|
|
const findAll = (selector, elem) => {
|
|
if (!elem) {
|
|
elem = document
|
|
}
|
|
return [...elem.querySelectorAll(selector)]
|
|
}
|
|
|
|
const dom = {
|
|
getStaticRow: (key, value) => {
|
|
const envRow = templateEnvRow.content.cloneNode(true)
|
|
const isObj = typeof value === 'object' && value !== null
|
|
const values = isObj ? Object.keys(value).map((k) => `${k}: ${value[k]}`) : null
|
|
|
|
const valuesElement = htmlToElements(
|
|
values ? `<ul>${values.map((val) => `<li>${val}</li>`).join('')}<ul>` : `<div>${value}</div>`)[0]
|
|
const td = findAll('td', envRow)
|
|
td[0].textContent = key
|
|
td[1].appendChild(valuesElement)
|
|
|
|
return envRow
|
|
},
|
|
getResultTBody: ({ testId, id, log, extras, resultsTableRow, tableHtml, result, collapsed }) => {
|
|
const resultBody = templateResult.content.cloneNode(true)
|
|
resultBody.querySelector('tbody').classList.add(result.toLowerCase())
|
|
resultBody.querySelector('tbody').id = testId
|
|
resultBody.querySelector('.collapsible').dataset.id = id
|
|
|
|
resultsTableRow.forEach((html) => {
|
|
const t = document.createElement('template')
|
|
t.innerHTML = html
|
|
resultBody.querySelector('.collapsible').appendChild(t.content)
|
|
})
|
|
|
|
if (log) {
|
|
// Wrap lines starting with "E" with span.error to color those lines red
|
|
const wrappedLog = log.replace(/^E.*$/gm, (match) => `<span class="error">${match}</span>`)
|
|
resultBody.querySelector('.log').innerHTML = wrappedLog
|
|
} else {
|
|
resultBody.querySelector('.log').remove()
|
|
}
|
|
|
|
if (collapsed) {
|
|
resultBody.querySelector('.collapsible > .col-result')?.classList.add('collapsed')
|
|
resultBody.querySelector('.extras-row').classList.add('hidden')
|
|
} else {
|
|
resultBody.querySelector('.collapsible > .col-result')?.classList.remove('collapsed')
|
|
}
|
|
|
|
const media = []
|
|
extras?.forEach(({ name, format_type, content }) => {
|
|
if (['image', 'video'].includes(format_type)) {
|
|
media.push({ path: content, name, format_type })
|
|
}
|
|
|
|
if (format_type === 'html') {
|
|
resultBody.querySelector('.extraHTML').insertAdjacentHTML('beforeend', `<div>${content}</div>`)
|
|
}
|
|
})
|
|
mediaViewer.setup(resultBody, media)
|
|
|
|
// Add custom html from the pytest_html_results_table_html hook
|
|
tableHtml?.forEach((item) => {
|
|
resultBody.querySelector('td[class="extra"]').insertAdjacentHTML('beforeend', item)
|
|
})
|
|
|
|
return resultBody
|
|
},
|
|
}
|
|
|
|
module.exports = {
|
|
dom,
|
|
htmlToElements,
|
|
find,
|
|
findAll,
|
|
}
|
|
|
|
},{"./mediaviewer.js":6}],3:[function(require,module,exports){
|
|
const { manager } = require('./datamanager.js')
|
|
const { doSort } = require('./sort.js')
|
|
const storageModule = require('./storage.js')
|
|
|
|
const getFilteredSubSet = (filter) =>
|
|
manager.allData.tests.filter(({ result }) => filter.includes(result.toLowerCase()))
|
|
|
|
const doInitFilter = () => {
|
|
const currentFilter = storageModule.getVisible()
|
|
const filteredSubset = getFilteredSubSet(currentFilter)
|
|
manager.setRender(filteredSubset)
|
|
}
|
|
|
|
const doFilter = (type, show) => {
|
|
if (show) {
|
|
storageModule.showCategory(type)
|
|
} else {
|
|
storageModule.hideCategory(type)
|
|
}
|
|
|
|
const currentFilter = storageModule.getVisible()
|
|
const filteredSubset = getFilteredSubSet(currentFilter)
|
|
manager.setRender(filteredSubset)
|
|
|
|
const sortColumn = storageModule.getSort()
|
|
doSort(sortColumn, true)
|
|
}
|
|
|
|
module.exports = {
|
|
doFilter,
|
|
doInitFilter,
|
|
}
|
|
|
|
},{"./datamanager.js":1,"./sort.js":7,"./storage.js":8}],4:[function(require,module,exports){
|
|
const { redraw, bindEvents, renderStatic } = require('./main.js')
|
|
const { doInitFilter } = require('./filter.js')
|
|
const { doInitSort } = require('./sort.js')
|
|
const { manager } = require('./datamanager.js')
|
|
const data = JSON.parse(document.getElementById('data-container').dataset.jsonblob)
|
|
|
|
function init() {
|
|
manager.setManager(data)
|
|
doInitFilter()
|
|
doInitSort()
|
|
renderStatic()
|
|
redraw()
|
|
bindEvents()
|
|
}
|
|
|
|
init()
|
|
|
|
},{"./datamanager.js":1,"./filter.js":3,"./main.js":5,"./sort.js":7}],5:[function(require,module,exports){
|
|
const { dom, find, findAll } = require('./dom.js')
|
|
const { manager } = require('./datamanager.js')
|
|
const { doSort } = require('./sort.js')
|
|
const { doFilter } = require('./filter.js')
|
|
const {
|
|
getVisible,
|
|
getCollapsedIds,
|
|
setCollapsedIds,
|
|
getSort,
|
|
getSortDirection,
|
|
possibleFilters,
|
|
} = require('./storage.js')
|
|
|
|
const removeChildren = (node) => {
|
|
while (node.firstChild) {
|
|
node.removeChild(node.firstChild)
|
|
}
|
|
}
|
|
|
|
const renderStatic = () => {
|
|
const renderEnvironmentTable = () => {
|
|
const environment = manager.environment
|
|
const rows = Object.keys(environment).map((key) => dom.getStaticRow(key, environment[key]))
|
|
const table = document.getElementById('environment')
|
|
removeChildren(table)
|
|
rows.forEach((row) => table.appendChild(row))
|
|
}
|
|
renderEnvironmentTable()
|
|
}
|
|
|
|
const addItemToggleListener = (elem) => {
|
|
elem.addEventListener('click', ({ target }) => {
|
|
const id = target.parentElement.dataset.id
|
|
manager.toggleCollapsedItem(id)
|
|
|
|
const collapsedIds = getCollapsedIds()
|
|
if (collapsedIds.includes(id)) {
|
|
const updated = collapsedIds.filter((item) => item !== id)
|
|
setCollapsedIds(updated)
|
|
} else {
|
|
collapsedIds.push(id)
|
|
setCollapsedIds(collapsedIds)
|
|
}
|
|
redraw()
|
|
})
|
|
}
|
|
|
|
const renderContent = (tests) => {
|
|
const sortAttr = getSort(manager.initialSort)
|
|
const sortAsc = JSON.parse(getSortDirection())
|
|
const rows = tests.map(dom.getResultTBody)
|
|
const table = document.getElementById('results-table')
|
|
const tableHeader = document.getElementById('results-table-head')
|
|
|
|
const newTable = document.createElement('table')
|
|
newTable.id = 'results-table'
|
|
|
|
// remove all sorting classes and set the relevant
|
|
findAll('.sortable', tableHeader).forEach((elem) => elem.classList.remove('asc', 'desc'))
|
|
tableHeader.querySelector(`.sortable[data-column-type="${sortAttr}"]`)?.classList.add(sortAsc ? 'desc' : 'asc')
|
|
newTable.appendChild(tableHeader)
|
|
|
|
if (!rows.length) {
|
|
const emptyTable = document.getElementById('template_results-table__body--empty').content.cloneNode(true)
|
|
newTable.appendChild(emptyTable)
|
|
} else {
|
|
rows.forEach((row) => {
|
|
if (!!row) {
|
|
findAll('.collapsible td:not(.col-links', row).forEach(addItemToggleListener)
|
|
find('.logexpander', row).addEventListener('click',
|
|
(evt) => evt.target.parentNode.classList.toggle('expanded'),
|
|
)
|
|
newTable.appendChild(row)
|
|
}
|
|
})
|
|
}
|
|
|
|
table.replaceWith(newTable)
|
|
}
|
|
|
|
const renderDerived = () => {
|
|
const currentFilter = getVisible()
|
|
possibleFilters.forEach((result) => {
|
|
const input = document.querySelector(`input[data-test-result="${result}"]`)
|
|
input.checked = currentFilter.includes(result)
|
|
})
|
|
}
|
|
|
|
const bindEvents = () => {
|
|
const filterColumn = (evt) => {
|
|
const { target: element } = evt
|
|
const { testResult } = element.dataset
|
|
|
|
doFilter(testResult, element.checked)
|
|
const collapsedIds = getCollapsedIds()
|
|
const updated = manager.renderData.tests.map((test) => {
|
|
return {
|
|
...test,
|
|
collapsed: collapsedIds.includes(test.id),
|
|
}
|
|
})
|
|
manager.setRender(updated)
|
|
redraw()
|
|
}
|
|
|
|
const header = document.getElementById('environment-header')
|
|
header.addEventListener('click', () => {
|
|
const table = document.getElementById('environment')
|
|
table.classList.toggle('hidden')
|
|
header.classList.toggle('collapsed')
|
|
})
|
|
|
|
findAll('input[name="filter_checkbox"]').forEach((elem) => {
|
|
elem.addEventListener('click', filterColumn)
|
|
})
|
|
|
|
findAll('.sortable').forEach((elem) => {
|
|
elem.addEventListener('click', (evt) => {
|
|
const { target: element } = evt
|
|
const { columnType } = element.dataset
|
|
doSort(columnType)
|
|
redraw()
|
|
})
|
|
})
|
|
|
|
document.getElementById('show_all_details').addEventListener('click', () => {
|
|
manager.allCollapsed = false
|
|
setCollapsedIds([])
|
|
redraw()
|
|
})
|
|
document.getElementById('hide_all_details').addEventListener('click', () => {
|
|
manager.allCollapsed = true
|
|
const allIds = manager.renderData.tests.map((test) => test.id)
|
|
setCollapsedIds(allIds)
|
|
redraw()
|
|
})
|
|
}
|
|
|
|
const redraw = () => {
|
|
const { testSubset } = manager
|
|
|
|
renderContent(testSubset)
|
|
renderDerived()
|
|
}
|
|
|
|
module.exports = {
|
|
redraw,
|
|
bindEvents,
|
|
renderStatic,
|
|
}
|
|
|
|
},{"./datamanager.js":1,"./dom.js":2,"./filter.js":3,"./sort.js":7,"./storage.js":8}],6:[function(require,module,exports){
|
|
class MediaViewer {
|
|
constructor(assets) {
|
|
this.assets = assets
|
|
this.index = 0
|
|
}
|
|
|
|
nextActive() {
|
|
this.index = this.index === this.assets.length - 1 ? 0 : this.index + 1
|
|
return [this.activeFile, this.index]
|
|
}
|
|
|
|
prevActive() {
|
|
this.index = this.index === 0 ? this.assets.length - 1 : this.index -1
|
|
return [this.activeFile, this.index]
|
|
}
|
|
|
|
get currentIndex() {
|
|
return this.index
|
|
}
|
|
|
|
get activeFile() {
|
|
return this.assets[this.index]
|
|
}
|
|
}
|
|
|
|
|
|
const setup = (resultBody, assets) => {
|
|
if (!assets.length) {
|
|
resultBody.querySelector('.media').classList.add('hidden')
|
|
return
|
|
}
|
|
|
|
const mediaViewer = new MediaViewer(assets)
|
|
const container = resultBody.querySelector('.media-container')
|
|
const leftArrow = resultBody.querySelector('.media-container__nav--left')
|
|
const rightArrow = resultBody.querySelector('.media-container__nav--right')
|
|
const mediaName = resultBody.querySelector('.media__name')
|
|
const counter = resultBody.querySelector('.media__counter')
|
|
const imageEl = resultBody.querySelector('img')
|
|
const sourceEl = resultBody.querySelector('source')
|
|
const videoEl = resultBody.querySelector('video')
|
|
|
|
const setImg = (media, index) => {
|
|
if (media?.format_type === 'image') {
|
|
imageEl.src = media.path
|
|
|
|
imageEl.classList.remove('hidden')
|
|
videoEl.classList.add('hidden')
|
|
} else if (media?.format_type === 'video') {
|
|
sourceEl.src = media.path
|
|
|
|
videoEl.classList.remove('hidden')
|
|
imageEl.classList.add('hidden')
|
|
}
|
|
|
|
mediaName.innerText = media?.name
|
|
counter.innerText = `${index + 1} / ${assets.length}`
|
|
}
|
|
setImg(mediaViewer.activeFile, mediaViewer.currentIndex)
|
|
|
|
const moveLeft = () => {
|
|
const [media, index] = mediaViewer.prevActive()
|
|
setImg(media, index)
|
|
}
|
|
const doRight = () => {
|
|
const [media, index] = mediaViewer.nextActive()
|
|
setImg(media, index)
|
|
}
|
|
const openImg = () => {
|
|
window.open(mediaViewer.activeFile.path, '_blank')
|
|
}
|
|
if (assets.length === 1) {
|
|
container.classList.add('media-container--fullscreen')
|
|
} else {
|
|
leftArrow.addEventListener('click', moveLeft)
|
|
rightArrow.addEventListener('click', doRight)
|
|
}
|
|
imageEl.addEventListener('click', openImg)
|
|
}
|
|
|
|
module.exports = {
|
|
setup,
|
|
}
|
|
|
|
},{}],7:[function(require,module,exports){
|
|
const { manager } = require('./datamanager.js')
|
|
const storageModule = require('./storage.js')
|
|
|
|
const genericSort = (list, key, ascending, customOrder) => {
|
|
let sorted
|
|
if (customOrder) {
|
|
sorted = list.sort((a, b) => {
|
|
const aValue = a.result.toLowerCase()
|
|
const bValue = b.result.toLowerCase()
|
|
|
|
const aIndex = customOrder.findIndex((item) => item.toLowerCase() === aValue)
|
|
const bIndex = customOrder.findIndex((item) => item.toLowerCase() === bValue)
|
|
|
|
// Compare the indices to determine the sort order
|
|
return aIndex - bIndex
|
|
})
|
|
} else {
|
|
sorted = list.sort((a, b) => a[key] === b[key] ? 0 : a[key] > b[key] ? 1 : -1)
|
|
}
|
|
|
|
if (ascending) {
|
|
sorted.reverse()
|
|
}
|
|
return sorted
|
|
}
|
|
|
|
const durationSort = (list, ascending) => {
|
|
const parseDuration = (duration) => {
|
|
if (duration.includes(':')) {
|
|
// If it's in the format "HH:mm:ss"
|
|
const [hours, minutes, seconds] = duration.split(':').map(Number)
|
|
return (hours * 3600 + minutes * 60 + seconds) * 1000
|
|
} else {
|
|
// If it's in the format "nnn ms"
|
|
return parseInt(duration)
|
|
}
|
|
}
|
|
const sorted = list.sort((a, b) => parseDuration(a['duration']) - parseDuration(b['duration']))
|
|
if (ascending) {
|
|
sorted.reverse()
|
|
}
|
|
return sorted
|
|
}
|
|
|
|
const doInitSort = () => {
|
|
const type = storageModule.getSort(manager.initialSort)
|
|
const ascending = storageModule.getSortDirection()
|
|
const list = manager.testSubset
|
|
const initialOrder = ['Error', 'Failed', 'Rerun', 'XFailed', 'XPassed', 'Skipped', 'Passed']
|
|
|
|
storageModule.setSort(type)
|
|
storageModule.setSortDirection(ascending)
|
|
|
|
if (type?.toLowerCase() === 'original') {
|
|
manager.setRender(list)
|
|
} else {
|
|
let sortedList
|
|
switch (type) {
|
|
case 'duration':
|
|
sortedList = durationSort(list, ascending)
|
|
break
|
|
case 'result':
|
|
sortedList = genericSort(list, type, ascending, initialOrder)
|
|
break
|
|
default:
|
|
sortedList = genericSort(list, type, ascending)
|
|
break
|
|
}
|
|
manager.setRender(sortedList)
|
|
}
|
|
}
|
|
|
|
const doSort = (type, skipDirection) => {
|
|
const newSortType = storageModule.getSort(manager.initialSort) !== type
|
|
const currentAsc = storageModule.getSortDirection()
|
|
let ascending
|
|
if (skipDirection) {
|
|
ascending = currentAsc
|
|
} else {
|
|
ascending = newSortType ? false : !currentAsc
|
|
}
|
|
storageModule.setSort(type)
|
|
storageModule.setSortDirection(ascending)
|
|
|
|
const list = manager.testSubset
|
|
const sortedList = type === 'duration' ? durationSort(list, ascending) : genericSort(list, type, ascending)
|
|
manager.setRender(sortedList)
|
|
}
|
|
|
|
module.exports = {
|
|
doInitSort,
|
|
doSort,
|
|
}
|
|
|
|
},{"./datamanager.js":1,"./storage.js":8}],8:[function(require,module,exports){
|
|
const possibleFilters = [
|
|
'passed',
|
|
'skipped',
|
|
'failed',
|
|
'error',
|
|
'xfailed',
|
|
'xpassed',
|
|
'rerun',
|
|
]
|
|
|
|
const getVisible = () => {
|
|
const url = new URL(window.location.href)
|
|
const settings = new URLSearchParams(url.search).get('visible')
|
|
const lower = (item) => {
|
|
const lowerItem = item.toLowerCase()
|
|
if (possibleFilters.includes(lowerItem)) {
|
|
return lowerItem
|
|
}
|
|
return null
|
|
}
|
|
return settings === null ?
|
|
possibleFilters :
|
|
[...new Set(settings?.split(',').map(lower).filter((item) => item))]
|
|
}
|
|
|
|
const hideCategory = (categoryToHide) => {
|
|
const url = new URL(window.location.href)
|
|
const visibleParams = new URLSearchParams(url.search).get('visible')
|
|
const currentVisible = visibleParams ? visibleParams.split(',') : [...possibleFilters]
|
|
const settings = [...new Set(currentVisible)].filter((f) => f !== categoryToHide).join(',')
|
|
|
|
url.searchParams.set('visible', settings)
|
|
window.history.pushState({}, null, unescape(url.href))
|
|
}
|
|
|
|
const showCategory = (categoryToShow) => {
|
|
if (typeof window === 'undefined') {
|
|
return
|
|
}
|
|
const url = new URL(window.location.href)
|
|
const currentVisible = new URLSearchParams(url.search).get('visible')?.split(',').filter(Boolean) ||
|
|
[...possibleFilters]
|
|
const settings = [...new Set([categoryToShow, ...currentVisible])]
|
|
const noFilter = possibleFilters.length === settings.length || !settings.length
|
|
|
|
noFilter ? url.searchParams.delete('visible') : url.searchParams.set('visible', settings.join(','))
|
|
window.history.pushState({}, null, unescape(url.href))
|
|
}
|
|
|
|
const getSort = (initialSort) => {
|
|
const url = new URL(window.location.href)
|
|
let sort = new URLSearchParams(url.search).get('sort')
|
|
if (!sort) {
|
|
sort = initialSort || 'result'
|
|
}
|
|
return sort
|
|
}
|
|
|
|
const setSort = (type) => {
|
|
const url = new URL(window.location.href)
|
|
url.searchParams.set('sort', type)
|
|
window.history.pushState({}, null, unescape(url.href))
|
|
}
|
|
|
|
const getCollapsedCategory = (renderCollapsed) => {
|
|
let categories
|
|
if (typeof window !== 'undefined') {
|
|
const url = new URL(window.location.href)
|
|
const collapsedItems = new URLSearchParams(url.search).get('collapsed')
|
|
switch (true) {
|
|
case !renderCollapsed && collapsedItems === null:
|
|
categories = ['passed']
|
|
break
|
|
case collapsedItems?.length === 0 || /^["']{2}$/.test(collapsedItems):
|
|
categories = []
|
|
break
|
|
case /^all$/.test(collapsedItems) || collapsedItems === null && /^all$/.test(renderCollapsed):
|
|
categories = [...possibleFilters]
|
|
break
|
|
default:
|
|
categories = collapsedItems?.split(',').map((item) => item.toLowerCase()) || renderCollapsed
|
|
break
|
|
}
|
|
} else {
|
|
categories = []
|
|
}
|
|
return categories
|
|
}
|
|
|
|
const getSortDirection = () => JSON.parse(sessionStorage.getItem('sortAsc')) || false
|
|
const setSortDirection = (ascending) => sessionStorage.setItem('sortAsc', ascending)
|
|
|
|
const getCollapsedIds = () => JSON.parse(sessionStorage.getItem('collapsedIds')) || []
|
|
const setCollapsedIds = (list) => sessionStorage.setItem('collapsedIds', JSON.stringify(list))
|
|
|
|
module.exports = {
|
|
getVisible,
|
|
hideCategory,
|
|
showCategory,
|
|
getCollapsedIds,
|
|
setCollapsedIds,
|
|
getSort,
|
|
setSort,
|
|
getSortDirection,
|
|
setSortDirection,
|
|
getCollapsedCategory,
|
|
possibleFilters,
|
|
}
|
|
|
|
},{}]},{},[4]);
|
|
</script>
|
|
</footer>
|
|
</body>
|
|
</html> |