~ruther/guix-local

ref: c09dca0c12fb620e8a4bb438c4e7c2a460be3550 guix-local/gnu/packages/patches/python-docrepr-fix-tests.patch -rw-r--r-- 527 bytes
c09dca0c — Sharlatan Hellseher gnu: Add go-github-com-charmbracelet-x-exp-slice. 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Fixes the errors with use of asyncio in docrepr/tests/test_output.py:
     
>       await compare_screenshots(test_id, url)
E       TypeError: 'coroutine' object is not callable

--- a/conftest.py
+++ b/conftest.py
@@ -65,7 +65,7 @@ def _open_browser(url):
 
 
 @pytest.fixture
-async def compare_screenshots(request):
+def compare_screenshots(request):
     """Run visual regression test on the output."""
     async def _compare_screenshots(test_id, url):
         if (request.config.getoption(COMPARE_SCREENSHOTS_OPTION) or