[3] | 1 | |
---|
| 2 | <html> |
---|
| 3 | <head> |
---|
| 4 | <style> |
---|
| 5 | |
---|
| 6 | body |
---|
| 7 | { |
---|
| 8 | font: 12px verdana, "Bitstream Vera Sans", geneva, arial, helvetica, helve, sans-serif; |
---|
| 9 | line-height: 160%; |
---|
| 10 | } |
---|
| 11 | |
---|
| 12 | div.test |
---|
| 13 | { |
---|
| 14 | margin: 5px; |
---|
| 15 | padding: 5px; |
---|
| 16 | border: solid black 1px; |
---|
| 17 | background: lightgray; |
---|
| 18 | } |
---|
| 19 | |
---|
| 20 | div.success |
---|
| 21 | { |
---|
| 22 | background: #CCFFCC; |
---|
| 23 | border: solid #66AA66 1px; |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | div.error, div.failure |
---|
| 27 | { |
---|
| 28 | background: #FFCCCC; |
---|
| 29 | border: solid #AA6666 1px; |
---|
| 30 | } |
---|
| 31 | |
---|
| 32 | span.label |
---|
| 33 | { |
---|
| 34 | font-weight: bold; |
---|
| 35 | } |
---|
| 36 | |
---|
| 37 | pre |
---|
| 38 | { |
---|
| 39 | background: white; |
---|
| 40 | padding: 5px; |
---|
| 41 | border: solid black 1px; |
---|
| 42 | display: block; |
---|
| 43 | overflow: auto; |
---|
| 44 | } |
---|
| 45 | </style> |
---|
| 46 | |
---|
| 47 | <script> |
---|
| 48 | function toggle(name){ |
---|
| 49 | var elem = document.getElementById(name) |
---|
| 50 | if (elem) { |
---|
| 51 | if (elem.style.display=="none"){ |
---|
| 52 | elem.style.display="block" |
---|
| 53 | } else { |
---|
| 54 | elem.style.display="none" |
---|
| 55 | } |
---|
| 56 | } |
---|
| 57 | } |
---|
| 58 | </script> |
---|
| 59 | </head> |
---|
| 60 | <body> |
---|
| 61 | |
---|
| 62 | <div class='test error'> |
---|
| 63 | <div><span class='label'>ID:</span> nose.failure.Failure.runTest</div> |
---|
| 64 | <div><span class='label'>Status:</span> error</div> |
---|
| 65 | <div><span class='label'>Exception:</span> <a href="javascript:toggle('exception_1')">...</a></div> |
---|
| 66 | <div id='exception_1' style='display: none'><pre class='exception'>Traceback (most recent call last): |
---|
| 67 | |
---|
| 68 | File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/unittest.py", line 279, in run |
---|
| 69 | testMethod() |
---|
| 70 | |
---|
| 71 | File "/Users/mako/Projects/bh2010/galaxy/bh10.10/galaxy-central/eggs/nose-0.11.1-py2.6.egg/nose/failure.py", line 39, in runTest |
---|
| 72 | raise self.exc_class(self.exc_val) |
---|
| 73 | |
---|
| 74 | ValueError: No such test TestForTool_cshl_sed_tool |
---|
| 75 | </pre></div> |
---|
| 76 | </div> |
---|
| 77 | |
---|
| 78 | </body> |
---|
| 79 | </html> |
---|
| 80 | |
---|