From f89fac42cfa3d4c4c45a17727801900a946c1990 Mon Sep 17 00:00:00 2001 From: Darragh Bailey Date: Sat, 12 Jul 2014 17:52:12 +0100 Subject: [PATCH] Show usage of job-group Make sure the example referenced in the documentation for ``Job Groups`` actually makes use of 'job-group'. Change-Id: Ib78bdb459db23f57093c1fd4a6dd74a5080dc239 --- tests/yamlparser/fixtures/templates001.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/yamlparser/fixtures/templates001.yaml b/tests/yamlparser/fixtures/templates001.yaml index e2012fd87..11ca5cee4 100644 --- a/tests/yamlparser/fixtures/templates001.yaml +++ b/tests/yamlparser/fixtures/templates001.yaml @@ -14,10 +14,15 @@ - email: recipients: '{mail-to}' -- project: - name: project-name +- job-group: + name: '{name}-tests' jobs: - '{name}-unit-tests': mail-to: developer@nowhere.net - '{name}-perf-tests': mail-to: projmanager@nowhere.net + +- project: + name: project-name + jobs: + - '{name}-tests'