如何 运行 与 ant 并行执行
How to run parallel execution with ant
我使用 junit 和 ant 并行执行。我需要在 Python 中并行 运行 进行测试。我们可以为此使用蚂蚁吗?如果是,如何?
如果不是,在 Python 中实现并行 运行 测试的方法是什么??
这有效
class myThread (threading.Thread):
def __init__(self, threadID, name, counter):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.counter = counter
def run(self):
print "Starting " + self.name
if (self.name=="Android"):
print self.name
elif (self.name=="ios") :
print self.name
else:
print self.name
print "Exiting " + self.name
//Creating new Threads
thread1 = myThread(1, "Android", 1)
thread2 = myThread(2, "ios", 2)
thread3 = myThread(3,"windowsphone",3)
//Start new Threads
thread2.start()
thread1.start()
thread3.start()
我使用 junit 和 ant 并行执行。我需要在 Python 中并行 运行 进行测试。我们可以为此使用蚂蚁吗?如果是,如何? 如果不是,在 Python 中实现并行 运行 测试的方法是什么??
这有效
class myThread (threading.Thread):
def __init__(self, threadID, name, counter):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.counter = counter
def run(self):
print "Starting " + self.name
if (self.name=="Android"):
print self.name
elif (self.name=="ios") :
print self.name
else:
print self.name
print "Exiting " + self.name
//Creating new Threads
thread1 = myThread(1, "Android", 1)
thread2 = myThread(2, "ios", 2)
thread3 = myThread(3,"windowsphone",3)
//Start new Threads
thread2.start()
thread1.start()
thread3.start()