~cjohnston/qa-dashboard/1289364

« back to all changes in this revision

Viewing changes to smokeng/config.py

  • Committer: Tarmac
  • Author(s): Paul Larson
  • Date: 2014-02-27 16:36:44 UTC
  • mfrom: (724.1.2 qa-dashboard)
  • Revision ID: tarmac-20140227163644-n9r4vpok23ssh33k
[r=Chris Johnston, PS Jenkins bot] Add support for flo in the dashboard and replace maguro as a primary platform  from Paul Larson

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# QA Dashboard
2
2
 
3
 
# Copyright 2013 Canonical Ltd.
 
3
# Copyright 2013-2014 Canonical Ltd.
4
4
 
5
5
# This program is free software: you can redistribute it and/or modify it
6
6
# under the terms of the GNU Affero General Public License version 3, as
29
29
 
30
30
 
31
31
def primary_targets(variant):
32
 
    if variant in ('touch', 'touch_ro'):
 
32
    if variant == 'touch':
 
33
        return ('mako', 'flo', 'manta')
 
34
    elif variant == 'touch_ro':
33
35
        return ('mako', 'maguro')
34
36
    else:
35
37
        return None