()
| 239 | |
| 240 | |
| 241 | def setup(): |
| 242 | # create tables |
| 243 | for db in (db1, db2, db3, db4): |
| 244 | Base.metadata.create_all(db) |
| 245 | |
| 246 | # establish initial "id" in db1 |
| 247 | with db1.begin() as conn: |
| 248 | conn.execute(ids.insert(), {"nextid": 1}) |
| 249 | |
| 250 | |
| 251 | def main(): |
no test coverage detected