tests: Add hack to test only a single storage driver

Fixes that LuaDBI being unavailable makes these produce nothing but
endless stack overflows in luarocks.
This commit is contained in:
Kim Alvefur 2023-07-22 16:20:36 +02:00
parent 9ee8b4e502
commit 8b013e9471

View file

@ -34,6 +34,11 @@ local configs = {
};
};
local test_only_driver = os.getenv "PROSODY_TEST_ONLY_STORAGE";
if test_only_driver then
configs = { [test_only_driver] = configs[test_only_driver] }
end
local test_host = "storage-unit-tests.invalid";
describe("storagemanager", function ()