mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
9ee8b4e502
commit
8b013e9471
1 changed files with 5 additions and 0 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue