File: conftest.py

package info (click to toggle)
python-asyncclick 8.1.8.0%2Basync-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 1,444 kB
  • sloc: python: 11,700; makefile: 22; sh: 10
file content (28 lines) | stat: -rw-r--r-- 721 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import pytest
import anyio
from functools import partial
from threading import Thread

from asyncclick.testing import CliRunner

class SyncCliRunner(CliRunner):
    def invoke(self,*a,_sync=False,**k):
        fn = super().invoke
        if _sync:
            return fn(*a,**k)

        # anyio now protects against nested calls, so we use a thread
        result = None
        def f():
            nonlocal result,fn
            async def r():
                return await fn(*a,**k)
            result = anyio.run(r) ## , backend="trio")
        t=Thread(target=f, name="TEST")
        t.start()
        t.join()
        return result

@pytest.fixture(scope="function")
def runner(request):
    return SyncCliRunner()