Commit 74d6b8a2 authored by Richard Clamp's avatar Richard Clamp

Fixup rspec tag misuse

In !14818 we added the ability to specify the example groups that should
run via the `-t` (tag) option to rspec.  It was assumed that the
inclusion filter generated `{:core => true, :mattermost => true}` would
run examples tagged :core OR :mattermost, when instead it means :core
AND :mattermost.

Here in order to assure at least some tests run, we specify that
the :mattermost tagged examples are the only ones we care about.
parent d035bdbe
......@@ -7,7 +7,7 @@ module QA
# including staging and on-premises installation.
#
class Mattermost < Scenario::Entrypoint
tags :core, :mattermost
tags :mattermost
def perform(address, mattermost, *files)
Runtime::Scenario.mattermost = mattermost
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment