diff --git a/pyproject.toml b/pyproject.toml index 98c947e..2f7fa5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ python = "python3" dependencies = [ "coverage[toml]>=6.5", "pytest", - "vault-dev@git+https://github.com/vimc/vault-dev@mrc-4644" + "vault-dev>=0.1.1" ] [tool.hatch.envs.default.scripts] test = "pytest {args:tests}" diff --git a/tests/conftest.py b/tests/conftest.py index ad7ed18..f5ccec8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,5 @@ import pytest +import vault_dev from privateer2.util import ( container_if_exists, @@ -8,6 +9,9 @@ ) +vault_dev.ensure_installed() + + @pytest.fixture def managed_docker(): created = {"container": [], "volume": []}