diff options
Diffstat (limited to 'tests/bootstrap')
| -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"))  | 
