pymtt
 All Classes Namespaces Files Functions Variables Groups
TestBuildMTTStage.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2015-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 TestBuild
17 # [Ordering 475] Build test software package
18 # @}
19 class TestBuildMTTStage(IPlugin):
20  def __init__(self):
21  # initialise parent class
22  IPlugin.__init__(self)
23  def print_name(self):
24  print("Build test software package")
25 
26  def ordering(self):
27  return 475