diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-21 16:37:55 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-21 17:14:59 +0200 |
commit | 4027764b3d93d2c83faa37a275715542a3df6054 (patch) | |
tree | 83fc935ce7344ed85e83428c106884095371ae31 /travis.sh | |
parent | 853cb392d56ded01fe1e1bc902022d56cf4a90e8 (diff) | |
download | sonarqube-4027764b3d93d2c83faa37a275715542a3df6054.tar.gz sonarqube-4027764b3d93d2c83faa37a275715542a3df6054.zip |
Add integration tests for manual and common rules
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh index 0d1567109ff..94bb22762ac 100755 --- a/travis.sh +++ b/travis.sh @@ -58,7 +58,7 @@ PRANALYSIS) ;; ITS_QUALITYGATE) - installTravisTools + installTravisTools export DISPLAY=:99.0 travis_start_xvfb @@ -66,6 +66,15 @@ ITS_QUALITYGATE) mvn install -Pit,dev -DskipTests -Dsonar.runtimeVersion=DEV -Dcategory="qualitygate" ;; +ITS_ISSUE) + installTravisTools + + export DISPLAY=:99.0 + travis_start_xvfb + + mvn install -Pit,dev -DskipTests -Dsonar.runtimeVersion=DEV -Dcategory="issue" + ;; + ITS_UPDATECENTER) installTravisTools |