diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-01 20:21:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-01 20:21:26 +0100 |
commit | a9963c54c9fca2b071d8c715ffa17b0e2c183a43 (patch) | |
tree | 49d7e2a1d577abf26a129689c87d859bcf2368e7 /.busted | |
parent | 56e97dc5d6ae00526ee81c24139680c50c0834d0 (diff) | |
download | prosody-a9963c54c9fca2b071d8c715ffa17b0e2c183a43.tar.gz prosody-a9963c54c9fca2b071d8c715ffa17b0e2c183a43.zip |
Fix storage tests so they run, but not by default
Diffstat (limited to '.busted')
-rw-r--r-- | .busted | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -2,9 +2,12 @@ return { _all = { }, default = { - ["exclude-tags"] = "mod_bosh"; - }, + ["exclude-tags"] = "mod_bosh,storage"; + }; bosh = { tags = "mod_bosh"; - } + }; + storage = { + tags = "storage"; + }; } |