1
1
mirror of https://github.com/yandex/pgmigrate.git synced 2024-09-20 00:31:17 +03:00
pgmigrate/features/environment.py

22 lines
460 B
Python
Raw Permalink Normal View History

import shutil
def before_scenario(context, scenario):
try:
context.last_migrate_res = {}
context.callbacks = []
context.migrate_config = {}
shutil.rmtree(context.migr_dir)
except Exception:
pass
def after_all(context):
try:
context.last_migrate_res = {}
context.callbacks = []
context.migrate_config = {}
shutil.rmtree(context.migr_dir)
except Exception:
pass