Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from gevent import monkey 

2monkey.patch_all() 

3import gevent 

4 

5gevent.getcurrent().gr_name = 'MAIN' 

6 

7import utils.log 

8utils.log.patch_gevent_hub_print_exception() 

9 

10import _pytest.logging 

11 

12_pytest.logging.LoggingPlugin._create_formatter = lambda *_: utils.log.ServerLogFormatter() 

13 

14from thb.thbunit import inject 

15inject()