Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(3) | Derive(0) | Import(1)
Forwards method calls to a set of added objects
src/t/e/testfarm-2.0/testfarm/v1/task.py testfarm(Download)
import os, time, sys, subprocess, tempfile from listeners import NullResultListener, MultiListener, ConsoleResultListener import testfarm.utils as utils
def do_checking_for_new_commits(self, listeners, verbose=False): "Checks if there is a new commit in the version control system" listener = MultiListener(listeners) if not self._has_new_commits(verbose) :
def do_subtasks( self, listeners = [ NullResultListener() ], verbose=False): "Executes all subtasks and sends results" listener = MultiListener(listeners) all_ok = True failed_subtasks = []
def stop_execution_gently(self, listeners = []): # TODO : Refactor, only for ServerListener "Asks listeners to stop the task execution gently if the execution was aborted by user" listener = MultiListener(listeners) listener.listen_end_task_gently(self.name)