Advertisement
Guest User

Untitled

a guest
Mar 16th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <target name="deploy">
  2. <sf:deploy username="${sf.username}"
  3. password="${sf.password}"
  4. serverurl="${sf.serverurl}"
  5. deployRoot="${dir}"
  6. testLevel="RunSpecifiedTests"
  7. maxPoll="300">
  8. <runTest>Test1</runTest>
  9. <runTest>Test2</runTest>
  10. </sf:deploy>
  11.  
  12. <target name="mydeploy">
  13. <sf:deploy username="${sf.username}"
  14. password="${sf.password}"
  15. serverurl="${sf.serverurl}"
  16. deployRoot="${dir}"
  17. testLevel="RunSpecifiedTests"
  18. maxPoll="300">
  19. <for list="Test1,Test2" param="test">
  20. <sequential>
  21. <runTest>"@{test}"</runTest>
  22. </sequential>
  23. </for>
  24. </sf:deploy>
  25. </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement