@@ -2223,6 +2223,9 @@ def _perform_pytest_unconfigure_(config):
2223
2223
the_html_r = the_html_r .replace (
2224
2224
ph_link , "%s and %s" % (sb_link , ph_link )
2225
2225
)
2226
+ the_html_r = the_html_r .replace (
2227
+ "findAll('.collapsible" , "//findAll('.collapsible"
2228
+ )
2226
2229
the_html_r = the_html_r .replace (
2227
2230
"mediaName.innerText" , "//mediaName.innerText"
2228
2231
)
@@ -2258,6 +2261,9 @@ def _perform_pytest_unconfigure_(config):
2258
2261
html_style = html_style .replace (
2259
2262
"- 80px);" , "- 80px);\n margin-bottom: -42px;"
2260
2263
)
2264
+ html_style = html_style .replace (".collapsible" , ".oldc" )
2265
+ html_style = html_style .replace (" (hide details)" , "" )
2266
+ html_style = html_style .replace (" (show details)" , "" )
2261
2267
with open (assets_style , "w" , encoding = "utf-8" ) as f :
2262
2268
f .write (html_style )
2263
2269
with suppress (Exception ):
@@ -2357,6 +2363,9 @@ def _perform_pytest_unconfigure_(config):
2357
2363
html_style = html_style .replace (
2358
2364
"- 80px);" , "- 80px);\n margin-bottom: -42px;"
2359
2365
)
2366
+ html_style = html_style .replace (".collapsible" , ".oldc" )
2367
+ html_style = html_style .replace (" (hide details)" , "" )
2368
+ html_style = html_style .replace (" (show details)" , "" )
2360
2369
with open (assets_style , "w" , encoding = "utf-8" ) as f :
2361
2370
f .write (html_style )
2362
2371
with suppress (Exception ):
@@ -2424,6 +2433,9 @@ def _perform_pytest_unconfigure_(config):
2424
2433
the_html_r = the_html_r .replace (
2425
2434
ph_link , "%s and %s" % (sb_link , ph_link )
2426
2435
)
2436
+ the_html_r = the_html_r .replace (
2437
+ "findAll('.collapsible" , "//findAll('.collapsible"
2438
+ )
2427
2439
the_html_r = the_html_r .replace (
2428
2440
"mediaName.innerText" , "//mediaName.innerText"
2429
2441
)
0 commit comments