Skip to content

Commit

Permalink
fix: migrate_env silent failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Nov 29, 2022
1 parent c59d1ed commit 7f1c5ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bench/utils/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ def migrate_env(python, backup=False):
logger.log(f"Migration Successful to {python}")
except Exception:
if venv_creation or packages_setup:
logger.warning("Migration Error")
logger.warning("Migration Error", exc_info=True)
raise


def validate_upgrade(from_ver, to_ver, bench_path="."):
Expand Down

0 comments on commit 7f1c5ad

Please sign in to comment.