diff options
author | Richard Clamp <richardc@unixbeard.net> | 2017-11-06 17:54:21 +0000 |
---|---|---|
committer | Richard Clamp <richardc@unixbeard.net> | 2017-11-06 17:54:21 +0000 |
commit | 74d6b8a2114ed6b05ad7dd12688bf5b4c62c5358 (patch) | |
tree | bae4e857b7910dae21457a3eac30d2b43e33ab68 /qa | |
parent | d035bdbe3c9aff1b139ed656a5c4507475820e9d (diff) | |
download | gitlab-ce-74d6b8a2114ed6b05ad7dd12688bf5b4c62c5358.tar.gz |
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.
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/scenario/test/integration/mattermost.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/scenario/test/integration/mattermost.rb b/qa/qa/scenario/test/integration/mattermost.rb index 9a84e5c8fd8..59d7dcd3d23 100644 --- a/qa/qa/scenario/test/integration/mattermost.rb +++ b/qa/qa/scenario/test/integration/mattermost.rb @@ -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 |