Marco Ricci commited on 2024-11-28 21:30:03
Zeige 2 geänderte Dateien mit 2 Einfügungen und 3 Löschungen.
In particular, in online documentation builds, the URLs are slightly different, so the CSS rules weren't triggering correctly.
... | ... |
@@ -23,7 +23,7 @@ a.autorefs-external::after { |
23 | 23 |
} |
24 | 24 |
|
25 | 25 |
/* ... but don't mark badges as external */ |
26 |
-div[data-md-component="content"] a:not(.md-icon):is([href^="https://"], [href^="http://"], [href^="//"]):has(img[src^="https://img.shields.io/"], img[src="Keep_a_changelog-E05735.svg"], img[src="SemVer-3F4551.svg"])::after { |
|
26 |
+div[data-md-component="content"] a:not(.md-icon):is([href^="https://"], [href^="http://"], [href^="//"]):has(img[src^="https://img.shields.io/"], img[src="Keep_a_changelog-E05735.svg"], img[src="../Keep_a_changelog-E05735.svg"], img[src="SemVer-3F4551.svg"], img[src="../SemVer-3F4551.svg"])::after { |
|
27 | 27 |
content: ''; |
28 | 28 |
width: 0em; |
29 | 29 |
height: 0em; |
... | ... |
@@ -656,8 +656,7 @@ class TestAgentInteraction: |
656 | 656 |
): |
657 | 657 |
monkeypatch2.setattr(client, 'request', request) |
658 | 658 |
with pytest.raises( |
659 |
- RuntimeError, |
|
660 |
- match='Malformed response|does not match request' |
|
659 |
+ RuntimeError, match='Malformed response|does not match request' |
|
661 | 660 |
): |
662 | 661 |
client.query_extensions() |
663 | 662 |
|
664 | 663 |