Skip to content

Commit

Permalink
Revert changes in run_matrix.py
Browse files Browse the repository at this point in the history
  • Loading branch information
theoctober19th committed Jan 31, 2025
1 parent 6e63f28 commit 3e1d699
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions run_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,20 +171,11 @@ def _setup_venv(charm_path: Path) -> None:
logging.info(f"Installing dependencies in venv for {charm_path}")

subprocess.check_call(
".interface-venv/bin/python -m pip install setuptools pytest poetry poetry-plugin-export pytest-interface-tester",
".interface-venv/bin/python -m pip install setuptools pytest pytest-interface-tester",
shell=True,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
)
if not os.path.exists(
os.path.join(charm_path, "requirements.txt")
) and os.path.exists(os.path.join(charm_path, "poetry.lock")):
subprocess.check_call(
".interface-venv/bin/python -m poetry export -o requirements.txt",
shell=True,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
)
subprocess.check_call(
".interface-venv/bin/python -m pip install -r requirements.txt",
shell=True,
Expand Down

0 comments on commit 3e1d699

Please sign in to comment.