Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
[#44] Separate GUI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Zajaczkowski committed Feb 26, 2015
1 parent 2b01ccc commit 96d013b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ before_script:
- "export JAVA_OPTS=-Xmx512m"

script:
- ./gradlew build --stacktrace -Dstubrunner.skip-local-repo=true
- ./gradlew guiTest build --stacktrace -Dstubrunner.skip-local-repo=true

env:
- TERM=dumb
Expand Down
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ test {
testLogging {
exceptionFormat = 'full'
}
exclude '**/*UISpec.*'
}

task guiTest(type: Test) {
include '**/*UISpec.*'

reports.html {
destination = file("${reporting.baseDir}/guiTests")
}
}

repositories {
Expand Down

0 comments on commit 96d013b

Please sign in to comment.