diff options
author | Loys Ollivier <lollivier@baylibre.com> | 2018-01-03 15:56:12 +0100 |
---|---|---|
committer | Loys Ollivier <lollivier@baylibre.com> | 2018-01-10 15:31:32 +0100 |
commit | 927d952dae1faa84a747ccd5b9885ed21ccc69bd (patch) | |
tree | 9a63895686f5fcf78c005776feaeaf4c5bd55c4c /utils/create-jobs.py | |
parent | 788b31a122c3823d5e756524187975a2ad14cac6 (diff) |
utils: define test-plans based on build-type
As the list of test is expending, we want to be able to specify test
plans grouping several test definitions. These test plans are build type
specific.
Create a config file that specifies the test plans for each build type.
If the user does not specify the tests to run then use the default ones
for the build-type.
Change-Id: Ied4e9f80d3e42787174189cd08499a2906e500ef
Signed-off-by: Loys Ollivier <lollivier@baylibre.com>
Diffstat (limited to 'utils/create-jobs.py')
-rwxr-xr-x | utils/create-jobs.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/utils/create-jobs.py b/utils/create-jobs.py index 28fefa4..ad0c428 100755 --- a/utils/create-jobs.py +++ b/utils/create-jobs.py @@ -68,9 +68,6 @@ def main(): ajt = agljobtemplate.Agljobtemplate(templates_dir) args = parse_cmdline(ajt.machines, ajt.tests, ajt.rfs_types) - if args.tests is not None and 'all' in args.tests: - args.tests = ajt.tests - job = ajt.render_job(url=args.url, url_branch=args.url_branch, url_version=args.url_version, machine=args.machine, tests=args.tests, priority=args.priority, rfs_type=args.rfs_type, job_name=args.job_name, |