score:0

to remove test files (if you defined for every plugin project a source folder and a test folder) from the code while building a pde project using pde ant scripts you should remove the test folder from the build.properties of that project. the build.properties is a part of plugin.xml

score:1

this is an issue with your deployment procedure/script. are you using eclipse to build the jar ? it should not have to do with the build path, you should keep your test source in the build path if you use eclipse to code them. usually a deployment procedure using ant or maven will exclude the test classes from the result (jar, war, ...). it is also advisable to automatically run the tests before the jar is created.


Related Query

More Query from same tag