...
- Command-line users:
*( "gradlew" is the gradle wrapper shell script (gradlew) or batch file (gradlew.bat) found in the root folder of the Tapestry source.
- Eclipse Gradle IDE users:
- Right click on the top-level project (or any sub-project) and select Run As > Gradle Build..., which starts an External Tools Configuration dialog box. Enter a reasonable name, select the tasks you want to run (for example, tapestry-core/install), and click Run.
Running Individual Tests
Eclipse users:
- Install the TestNG plugin to allow running of individual TestNG unit tests from within in Eclipse.
...
Running the Tapestry integration tests can take 10 minutes or more (mostly because of Selenium tests, which repeatedly start and stop the Firefox browser), so you won't want to run them every time you try a change.
- Command-line users:
-
To build while skipping all tests: ./gradlew build -x test
- You can skip tests on a specific module by adding a colon and the module name. For example:
-x test:tapestry-ioc
- Eclipse Gradle IDE users:
- In your External Tools Configuration, add the same -x test option as above at Arguments > Program Arguments.
Running the Integration Test Apps Manually
...