From 33c16b9d14b605a46e1f2dbc1fe5bafe961225e3 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Sat, 7 Jun 2025 22:28:58 +0200 Subject: bootstrap test: install psycopg --- tests/bootstrap/test_new_instance.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests') diff --git a/tests/bootstrap/test_new_instance.py b/tests/bootstrap/test_new_instance.py index dc3076e..00f9833 100644 --- a/tests/bootstrap/test_new_instance.py +++ b/tests/bootstrap/test_new_instance.py @@ -58,6 +58,11 @@ def test_setup_via_fietsupdate(tmpdir): LOGGER.info("Installing Fietsboek into clean env") binaries_path = install_fietsboek(tmpdir / "venv") + LOGGER.info("Installing additional SQL engines") + subprocess.check_call( + [binaries_path / "pip", "install", "psycopg2"] + ) + LOGGER.info("Creating a test configuration") create_config(Path("testing.ini")) -- cgit v1.2.3