~singpolyma/biboumi

25530cf9eeb7863ad1745a2d518fdddb1ffa1491 — louiz’ 4 years ago f76cd93
e2e: Switch from coroutines to async, for python3.8
1 files changed, 8 insertions(+), 10 deletions(-)

M tests/end_to_end/__main__.py
M tests/end_to_end/__main__.py => tests/end_to_end/__main__.py +8 -10
@@ 108,10 108,10 @@ class XMPPComponent(slixmpp.BaseXMPP):
            if self.biboumi:
                self.biboumi.stop()

    @asyncio.coroutine
    def accept_routine(self):
        self.accepting_server = yield from self.loop.create_server(lambda: self,
                                                                   "127.0.0.1", 8811, reuse_address=True)

    async def accept_routine(self):
        self.accepting_server = await self.loop.create_server(lambda: self,
                                                              "127.0.0.1", 8811, reuse_address=True)

    def check_stanza_against_all_expected_xpaths(self):
        pass


@@ 220,13 220,11 @@ class ProcessRunner:
        self.signal_sent = False
        self.create = None

    @asyncio.coroutine
    def start(self):
        self.process = yield from self.create
    async def start(self):
        self.process = await self.create

    @asyncio.coroutine
    def wait(self):
        code = yield from self.process.wait()
    async def wait(self):
        code = await self.process.wait()
        return code

    def stop(self):