(config)
| 26 | |
| 27 | |
| 28 | def pytest_configure(config): |
| 29 | run_tx = config.getoption('--txcouchbase') |
| 30 | if config and config.option and config.option.markexpr: |
| 31 | run_tx = config.getoption('--txcouchbase') |
| 32 | if 'txcouchbase' in config.option.markexpr: |
| 33 | run_tx = True |
| 34 | |
| 35 | if run_tx is True: |
| 36 | init_reactor() |
| 37 | |
| 38 | |
| 39 | def run_in_reactor_thread(fn, *args, **kwargs): |
nothing calls this directly
no test coverage detected