Krzysztof Kotlenga

Results 6 comments of Krzysztof Kotlenga

Well, currently a basic solution can be something like this: ```py class MyContext(click.Context): def invoke(self, *args, **kwargs): r = super().invoke(*args, **kwargs) if inspect.isawaitable(r): loop = asyncio.get_event_loop() return loop.run_until_complete(executor.submit(r)) # or...

I use AsyncDriver since January without any problems and wonder the same thing. :thinking:

(Not a click developer here, just lurking around.) This behavior seems to be in click since forever. For some unknown reason click doesn't expect that you would to this with...

Likely related to DECSLRM which asciinema-player doesn't support. In xterm, vertical split in tmux will use it unless xterm is configured as vt220: ``` *.vt100.decTerminalID: vt220 ``` Maybe iTerm2 is...

Hi @charredchar. Were you able to solve the issue?

I can confirm this. I'm currently working this around by: ```python import buildbot.config.master buildbot.config.master.get_is_in_unit_tests = lambda: False import buildbot.db.logs buildbot.db.logs.get_is_in_unit_tests = lambda: False ``` in buildmaster config. Related: #8278