Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions BUILDING.txt
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ Maven build goals:

* Use -DskipTests to skip tests when running the following Maven goals:
'package', 'install', 'deploy' or 'verify'
* Use -DskipJasmineTests=true to skip only the browser-driven jasmine tests in
hadoop-yarn-applications-catalog-webapp (e.g. on a headless machine with no
browser) while still running the module's other tests.
* -Dtest=<TESTCLASSNAME>,<TESTCLASSNAME#METHODNAME>,....
* -Dtest.exclude=<TESTCLASSNAME>
* -Dtest.exclude.pattern=**/<TESTCLASSNAME1>.java,**/<TESTCLASSNAME2>.java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,9 @@
</execution>
</executions>
<configuration>
<skipJasmineTests>${skipTests}</skipJasmineTests>
<!-- Jasmine tests are skipped if any one of -Dmaven.test.skip=true,
-DskipTests, -DskipJasmineTests=true is set. Don't declare
skipJasmineTests here: it would override those command-line flags. -->
<webDriverClassName>org.openqa.selenium.phantomjs.PhantomJSDriver</webDriverClassName>
<webDriverCapabilities>
<capability>
Expand Down
Loading