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 | 7d3a30e4a79a00680f55a1347918d41b4388aeb4 (patch) | |
tree | 49d7e2a1d577abf26a129689c87d859bcf2368e7 /.busted | |
parent | f6f4d29c2fefffff27118b74ac7b5151d8930505 (diff) | |
download | prosody-7d3a30e4a79a00680f55a1347918d41b4388aeb4.tar.gz prosody-7d3a30e4a79a00680f55a1347918d41b4388aeb4.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"; + }; } |