Dynamically create a database for testing. Used when a test run will employ multiple processes, e.g., when run via `tox` or `pytest -n4`.
(cfg, eng, ident)
| 362 | |
| 363 | @register.init |
| 364 | def create_db(cfg, eng, ident): |
| 365 | """Dynamically create a database for testing. |
| 366 | |
| 367 | Used when a test run will employ multiple processes, e.g., when run |
| 368 | via `tox` or `pytest -n4`. |
| 369 | """ |
| 370 | raise NotImplementedError( |
| 371 | "no DB creation routine for cfg: %s" % (eng.url,) |
| 372 | ) |
| 373 | |
| 374 | |
| 375 | @register.init |
no outgoing calls
no test coverage detected