summaryrefslogtreecommitdiff
path: root/lib/ci
diff options
context:
space:
mode:
authorLeandro Camargo <leandroico@gmail.com>2016-11-18 01:42:35 -0200
committerLeandro Camargo <leandroico@gmail.com>2017-01-25 01:07:43 -0200
commit646b9c54d043edf17924e82d8e80a56e18d14ce4 (patch)
tree421dda5a4bb04d156c32254db4d79eb855a68617 /lib/ci
parent6a3d29c73d2578c7b2a40f2dfcb823b681a70f7e (diff)
downloadgitlab-ce-646b9c54d043edf17924e82d8e80a56e18d14ce4.tar.gz
Comply to requests made in the review and adjust to the Entry/Node changes
This commit: * Turns `coverage_regex` into `coverage` entry in yml file * Fixes smaller requests from code reviewers for the previous commit * This commit is temporary (will be squashed afterwards) This commit does not (further commits will do though): * Add global `coverage` entry handling in yml file as suggested by Grzegorz * Add specs * Create changelog * Create docs
Diffstat (limited to 'lib/ci')
-rw-r--r--lib/ci/gitlab_ci_yaml_processor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ci/gitlab_ci_yaml_processor.rb b/lib/ci/gitlab_ci_yaml_processor.rb
index 2f5ef4d36bd..649ee4d018b 100644
--- a/lib/ci/gitlab_ci_yaml_processor.rb
+++ b/lib/ci/gitlab_ci_yaml_processor.rb
@@ -61,7 +61,7 @@ module Ci
allow_failure: job[:allow_failure] || false,
when: job[:when] || 'on_success',
environment: job[:environment_name],
- coverage_regex: job[:coverage_regex],
+ coverage_regex: job[:coverage],
yaml_variables: yaml_variables(name),
options: {
image: job[:image],