This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
reports:092a17e [2016/08/06 07:23] karandesai96 removed |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | Test executed on commit [[https://www.github.com/tardis-sn/tardis/commit/092a17eae88be2e3216c70fb33c38307567caeae|092a17eae88be2e3216c70fb33c38307567caeae]] | ||
- | |||
- | <html> | ||
- | <head> | ||
- | <meta charset="utf-8"/> | ||
- | <title>Test Report</title> | ||
- | <style>body { | ||
- | font-family: Helvetica, Arial, sans-serif; | ||
- | font-size: 12px; | ||
- | min-width: 1200px; | ||
- | color: #999; | ||
- | } | ||
- | 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; | ||
- | } | ||
- | |||
- | #environment tr:nth-child(odd) { | ||
- | background-color: #f6f6f6; | ||
- | } | ||
- | |||
- | /****************************** | ||
- | * 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; | ||
- | } | ||
- | |||
- | |||
- | /****************************** | ||
- | * 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 | ||
- | *------------------*/ | ||
- | |||
- | .log:only-child { | ||
- | height: inherit | ||
- | } | ||
- | .log { | ||
- | background-color: #e6e6e6; | ||
- | border: 1px solid #e6e6e6; | ||
- | color: black; | ||
- | display: block; | ||
- | font-family: "Courier New", Courier, monospace; | ||
- | height: 230px; | ||
- | overflow-y: scroll; | ||
- | padding: 5px; | ||
- | white-space: pre-wrap | ||
- | } | ||
- | div.image { | ||
- | border: 1px solid #e6e6e6; | ||
- | float: right; | ||
- | height: 240px; | ||
- | margin-left: 5px; | ||
- | overflow: hidden; | ||
- | width: 320px | ||
- | } | ||
- | div.image img { | ||
- | width: 320px | ||
- | } | ||
- | |||
- | /*------------------ | ||
- | * 3. Sorting items | ||
- | *------------------*/ | ||
- | .sortable { | ||
- | cursor: pointer; | ||
- | } | ||
- | |||
- | .sort-icon { | ||
- | font-size: 0px; | ||
- | float: left; | ||
- | margin-right: 5px; | ||
- | margin-top: 5px; | ||
- | /*triangle*/ | ||
- | width: 0; | ||
- | height: 0; | ||
- | border-left: 8px solid transparent; | ||
- | border-right: 8px solid transparent; | ||
- | } | ||
- | |||
- | .inactive .sort-icon { | ||
- | /*finish triangle*/ | ||
- | border-top: 8px solid #E6E6E6; | ||
- | } | ||
- | |||
- | .asc.active .sort-icon { | ||
- | /*finish triangle*/ | ||
- | border-bottom: 8px solid #999; | ||
- | } | ||
- | |||
- | .desc.active .sort-icon { | ||
- | /*finish triangle*/ | ||
- | border-top: 8px solid #999; | ||
- | } | ||
- | </style></head> | ||
- | <body> | ||
- | <script>/* This Source Code Form is subject to the terms of the Mozilla Public | ||
- | * License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
- | * You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
- | |||
- | |||
- | function toArray(iter) { | ||
- | if (iter === null) { | ||
- | return null; | ||
- | } | ||
- | return Array.prototype.slice.call(iter); | ||
- | } | ||
- | |||
- | function find(selector, elem) { | ||
- | if (!elem) { | ||
- | elem = document; | ||
- | } | ||
- | return elem.querySelector(selector); | ||
- | } | ||
- | |||
- | function find_all(selector, elem) { | ||
- | if (!elem) { | ||
- | elem = document; | ||
- | } | ||
- | return toArray(elem.querySelectorAll(selector)); | ||
- | } | ||
- | |||
- | function sort_column(elem) { | ||
- | toggle_sort_states(elem); | ||
- | var colIndex = toArray(elem.parentNode.childNodes).indexOf(elem); | ||
- | var key; | ||
- | if (elem.classList.contains('numeric')) { | ||
- | key = key_num; | ||
- | } else if (elem.classList.contains('result')) { | ||
- | key = key_result; | ||
- | } else { | ||
- | key = key_alpha; | ||
- | } | ||
- | sort_table(elem, key(colIndex)); | ||
- | } | ||
- | |||
- | addEventListener("DOMContentLoaded", function() { | ||
- | reset_sort_headers(); | ||
- | |||
- | sort_column(find('.initial-sort')); | ||
- | |||
- | find_all('.col-links a.image').forEach(function(elem) { | ||
- | elem.addEventListener("click", | ||
- | function(event) { | ||
- | var node = elem; | ||
- | while (node && !node.classList.contains('results-table-row')) { | ||
- | node = node.parentNode; | ||
- | } | ||
- | if (node != null) { | ||
- | if (node.nextSibling && | ||
- | node.nextSibling.classList.contains("extra")) { | ||
- | var href = find('.image img', node.nextSibling).src; | ||
- | window.open(href); | ||
- | } | ||
- | } | ||
- | event.preventDefault(); | ||
- | }, false) | ||
- | }); | ||
- | |||
- | find_all('.image a').forEach(function(elem) { | ||
- | elem.addEventListener("click", | ||
- | function(event) { | ||
- | window.open(find('img', elem).getAttribute('src')); | ||
- | event.preventDefault(); | ||
- | }, false) | ||
- | }); | ||
- | |||
- | find_all('.sortable').forEach(function(elem) { | ||
- | elem.addEventListener("click", | ||
- | function(event) { | ||
- | sort_column(elem); | ||
- | }, false) | ||
- | }); | ||
- | |||
- | }); | ||
- | |||
- | function sort_table(clicked, key_func) { | ||
- | var rows = find_all('.results-table-row'); | ||
- | var reversed = !clicked.classList.contains('asc'); | ||
- | var sorted_rows = sort(rows, key_func, reversed); | ||
- | |||
- | var parent = document.getElementById('results-table'); | ||
- | sorted_rows.forEach(function(elem) { | ||
- | parent.appendChild(elem); | ||
- | }); | ||
- | } | ||
- | |||
- | function sort(items, key_func, reversed) { | ||
- | var sort_array = items.map(function(item, i) { | ||
- | return [key_func(item), i]; | ||
- | }); | ||
- | var multiplier = reversed ? -1 : 1; | ||
- | |||
- | sort_array.sort(function(a, b) { | ||
- | var key_a = a[0]; | ||
- | var key_b = b[0]; | ||
- | return multiplier * (key_a >= key_b ? 1 : -1); | ||
- | }); | ||
- | |||
- | return sort_array.map(function(item) { | ||
- | var index = item[1]; | ||
- | return items[index]; | ||
- | }); | ||
- | } | ||
- | |||
- | function key_alpha(col_index) { | ||
- | return function(elem) { | ||
- | return elem.childNodes[1].childNodes[col_index].firstChild.data.toLowerCase(); | ||
- | }; | ||
- | } | ||
- | |||
- | function key_num(col_index) { | ||
- | return function(elem) { | ||
- | return parseFloat(elem.childNodes[1].childNodes[col_index].firstChild.data); | ||
- | }; | ||
- | } | ||
- | |||
- | function key_result(col_index) { | ||
- | return function(elem) { | ||
- | var strings = ['Error', 'Failed', 'XFailed', 'XPassed', 'Skipped', | ||
- | 'Passed']; | ||
- | return strings.indexOf(elem.childNodes[1].childNodes[col_index].firstChild.data); | ||
- | }; | ||
- | } | ||
- | |||
- | function reset_sort_headers() { | ||
- | find_all('.sort-icon').forEach(function(elem) { | ||
- | elem.parentNode.removeChild(elem); | ||
- | }); | ||
- | find_all('.sortable').forEach(function(elem) { | ||
- | var icon = document.createElement("div"); | ||
- | icon.className = "sort-icon"; | ||
- | icon.textContent = "vvv"; | ||
- | elem.insertBefore(icon, elem.firstChild); | ||
- | elem.classList.remove("desc", "active"); | ||
- | elem.classList.add("asc", "inactive"); | ||
- | }); | ||
- | } | ||
- | |||
- | function toggle_sort_states(elem) { | ||
- | //if active, toggle between asc and desc | ||
- | if (elem.classList.contains('active')) { | ||
- | elem.classList.toggle('asc'); | ||
- | elem.classList.toggle('desc'); | ||
- | } | ||
- | |||
- | //if inactive, reset all other functions and add ascending active | ||
- | if (elem.classList.contains('inactive')) { | ||
- | reset_sort_headers(); | ||
- | elem.classList.remove('inactive'); | ||
- | elem.classList.add('active'); | ||
- | } | ||
- | } | ||
- | |||
- | function is_all_rows_hidden(value) { | ||
- | return value.hidden == false; | ||
- | } | ||
- | |||
- | function filter_table(elem) { | ||
- | var outcome_att = "data-test-result"; | ||
- | var outcome = elem.getAttribute(outcome_att); | ||
- | class_outcome = outcome + " results-table-row"; | ||
- | var outcome_rows = document.getElementsByClassName(class_outcome); | ||
- | |||
- | for(var i = 0; i < outcome_rows.length; i++){ | ||
- | outcome_rows[i].hidden = !elem.checked; | ||
- | } | ||
- | |||
- | var rows = find_all('.results-table-row').filter(is_all_rows_hidden); | ||
- | var all_rows_hidden = rows.length == 0 ? true : false; | ||
- | var not_found_message = document.getElementById("not-found-message"); | ||
- | not_found_message.hidden = !all_rows_hidden; | ||
- | } | ||
- | </script> | ||
- | <p>Report generated on 06-Aug-2016 at 10:44:54</p> | ||
- | <h2>Environment</h2> | ||
- | <table id="environment"> | ||
- | <tr> | ||
- | <td>Platform</td> | ||
- | <td>Linux-3.16.0-70-generic-x86_64-with-debian-jessie-sid</td></tr> | ||
- | <tr> | ||
- | <td>Python</td> | ||
- | <td>2.7.11</td></tr></table> | ||
- | <h2>Summary</h2> | ||
- | <p>4 tests ran in 261.66 seconds. </p> | ||
- | <p>(Un)check the boxes to filter the results.</p><input checked="true" data-test-result="passed" name="filter_checkbox" onChange="filter_table(this)" type="checkbox"/><span class="passed">4 passed</span> <input checked="true" data-test-result="skipped" name="filter_checkbox" onChange="filter_table(this)" type="checkbox"/><span class="skipped">14 skipped</span> <input checked="true" data-test-result="failed" disabled="true" name="filter_checkbox" onChange="filter_table(this)" type="checkbox"/><span class="failed">0 failed</span> <input checked="true" data-test-result="error" disabled="true" name="filter_checkbox" onChange="filter_table(this)" type="checkbox"/><span class="error">0 errors</span> <input checked="true" data-test-result="xfailed" disabled="true" name="filter_checkbox" onChange="filter_table(this)" type="checkbox"/><span class="xfailed">0 expected failures</span> <input checked="true" data-test-result="xpassed" disabled="true" name="filter_checkbox" onChange="filter_table(this)" type="checkbox"/><span class="xpassed">0 unexpected passes</span> <input checked="true" data-test-result="rerun" disabled="true" name="filter_checkbox" onChange="filter_table(this)" type="checkbox"/><span class="rerun">0 rerun</span> | ||
- | <h2>Results</h2> | ||
- | <table id="results-table"> | ||
- | <thead id="results-table-head"> | ||
- | <tr> | ||
- | <th class="sortable initial-sort result" col="result">Result</th> | ||
- | <th class="sortable" col="name">Test</th> | ||
- | <th class="sortable numeric" col="duration">Duration</th> | ||
- | <th>Links</th></tr> | ||
- | <tr hidden="true" id="not-found-message"> | ||
- | <th colspan="5">No results found. Try to check the filters</th></tr></thead> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_estimators[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 74, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_blue_estimators[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 80, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_last_line_interactions[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 90, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_nubar_estimators[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 108, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_ws[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 114, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_luminosity_inner[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 120, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="passed results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Passed</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_spectrum[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]</td> | ||
- | <td class="col-duration">2.04</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div> | ||
- | <div class="image" style="float: left"> | ||
- | <a href="#"> | ||
- | <img src= "http://opensupernova.org/~karandesai96/integration/lib/exe/fetch.php?media=reports:092a17e:w7_spectrum.png" /> | ||
- | </a> | ||
- | </div> | ||
- | </div> | ||
- | <div class="empty log">No log output captured.</div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_montecarlo_properties[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 162, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="passed results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Passed</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_shell_temperature[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]</td> | ||
- | <td class="col-duration">0.64</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div> | ||
- | <div class="image" style="float: left"> | ||
- | <a href="#"> | ||
- | <img src= "http://opensupernova.org/~karandesai96/integration/lib/exe/fetch.php?media=reports:092a17e:w7_t_rads.png" /> | ||
- | </a> | ||
- | </div> | ||
- | </div> | ||
- | <div class="empty log">No log output captured.</div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_estimators[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 74, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_blue_estimators[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 80, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_last_line_interactions[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 90, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_nubar_estimators[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 108, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_ws[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 114, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_luminosity_inner[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 120, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="passed results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Passed</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_spectrum[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]</td> | ||
- | <td class="col-duration">2.95</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div> | ||
- | <div class="image" style="float: left"> | ||
- | <a href="#"> | ||
- | <img src= "http://opensupernova.org/~karandesai96/integration/lib/exe/fetch.php?media=reports:092a17e:at_spectrum.png" /> | ||
- | </a> | ||
- | </div> | ||
- | </div> | ||
- | <div class="empty log">No log output captured.</div></td></tr></tbody> | ||
- | <tbody class="skipped results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Skipped</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_montecarlo_properties[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup</td> | ||
- | <td class="col-duration">0.00</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div class="log" style="clear: both">('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 162, u'Skipped: Introduction of HDF mechanism.')<br/></div></td></tr></tbody> | ||
- | <tbody class="passed results-table-row"> | ||
- | <tr> | ||
- | <td class="col-result">Passed</td> | ||
- | <td class="col-name">lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_shell_temperature[/tmp/tardis-test-0lah1H/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]</td> | ||
- | <td class="col-duration">0.65</td> | ||
- | <td class="col-links"></td></tr> | ||
- | <tr> | ||
- | <td class="extra" colspan="5"> | ||
- | <div> | ||
- | <div class="image" style="float: left"> | ||
- | <a href="#"> | ||
- | <img src= "http://opensupernova.org/~karandesai96/integration/lib/exe/fetch.php?media=reports:092a17e:at_t_rads.png" /> | ||
- | </a> | ||
- | </div> | ||
- | </div> | ||
- | <div class="empty log">No log output captured.</div></td></tr></tbody></table></body></html> |