pymtt
 All Classes Namespaces Files Functions Variables Groups
ProfileMTTStage.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2016-2018 Intel, Inc. All rights reserved.
4 # $COPYRIGHT$
5 #
6 # Additional copyrights may follow
7 #
8 # $HEADER$
9 #
10 
11 from __future__ import print_function
12 from yapsy.IPlugin import IPlugin
13 
14 ## @addtogroup Stages
15 # @{
16 # @addtogroup Profile
17 # [Ordering 210] Stage for profiling the system upon which the tests will be conducted
18 # @}
19 class ProfileMTTStage(IPlugin):
20  def __init__(self):
21  # initialise parent class
22  IPlugin.__init__(self)
23  def print_name(self):
24  print("Stage for profiling the system upon which the tests will be conducted")
25 
26  def ordering(self):
27  # set this stage so it follows BIOS, firmware, and provisioning
28  # so we profile the final system
29  return 210