Commit 1b3d5eef authored by Mayra Cabrera's avatar Mayra Cabrera

Removes rubocop from yaml processor spec

Removes rubocop cop from YamlProcessor spec. This is a simple commit to
test the security:sync_remotes task
parent 9d02e0fc
...@@ -1388,7 +1388,7 @@ module Gitlab ...@@ -1388,7 +1388,7 @@ module Gitlab
let(:processor) { Gitlab::Ci::YamlProcessor.new(YAML.dump(config)) } let(:processor) { Gitlab::Ci::YamlProcessor.new(YAML.dump(config)) }
let(:config) do let(:config) do
{ {
stages: ["build", "test", "release"], # rubocop:disable Style/WordArray stages: %w[build test release],
release: { release: {
stage: "release", stage: "release",
only: ["tags"], only: ["tags"],
......
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