15 years ago
How to run multiple suites from multiple projects from ant
Hi,
I have this script that lunches one project :
which works fine. But I want to be able to run from ant all my projects in one go (they are all in the same folder, though).
This is the most similar thread I've found:
viewtopic.php?f=5&t=2323
Should I be looking at something along these lines or is there an obvious way I'm missing?
any help will be greately appreciated
cheers
m
I have this script that lunches one project :
<target name="test">
<exec executable="${soapui.bin.dir}/testrunner.sh"
failonerror="yes"
failifexecutionfails="yes">
<arg path="test.xml"/>
</exec>
</target>
which works fine. But I want to be able to run from ant all my projects in one go (they are all in the same folder, though).
This is the most similar thread I've found:
viewtopic.php?f=5&t=2323
Should I be looking at something along these lines or is there an obvious way I'm missing?
any help will be greately appreciated
cheers
m