diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-06-07 22:28:58 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-06-07 22:28:58 +0200 |
commit | 33c16b9d14b605a46e1f2dbc1fe5bafe961225e3 (patch) | |
tree | 6efa4c6c4c407be5066b0d66b58109cd12792452 /tests | |
parent | 4140b993af9913f4d50c55b3add23718be1acf47 (diff) | |
download | fietsboek-33c16b9d14b605a46e1f2dbc1fe5bafe961225e3.tar.gz fietsboek-33c16b9d14b605a46e1f2dbc1fe5bafe961225e3.tar.bz2 fietsboek-33c16b9d14b605a46e1f2dbc1fe5bafe961225e3.zip |
bootstrap test: install psycopg
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bootstrap/test_new_instance.py | 5 |
1 files changed, 5 insertions, 0 deletions
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")) |