diff --git a/src/modules/testmodule.py b/src/modules/testmodule.py index 5de9bdcac..153298ffe 100755 --- a/src/modules/testmodule.py +++ b/src/modules/testmodule.py @@ -29,6 +29,9 @@ class Job: self.workingPath = workingPath self.configuration = doc[ "configuration" ] + def setprogress( self, progress ): + print ( "Job set progress to {}%.".format( progress * 100 ) ) + # Usage: ./testmodule.py [global_storage yaml file] def main( args ): moduledirpath = os.path.abspath( sys.argv[ 2 ] )