Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Switch off selenium on the run script
Browse files Browse the repository at this point in the history
  • Loading branch information
tfennelly committed Sep 23, 2016
1 parent 79eccf6 commit 755f74c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ SELENIUM_VERSION=2.53

MAVEN_SETTINGS=""
LOCAL_SNAPSHOTS=false
RUN_SELENIUM=false
RUN_SELENIUM=true
ATH_SERVER_HOST=""
ATH_SERVER_PORT=""
PLUGINS=""
Expand All @@ -49,6 +49,9 @@ case $i in
-s|--snaps|--snapshots)
LOCAL_SNAPSHOTS=true
;;
--no-selenium)
RUN_SELENIUM=false
;;
--settings=*)
MAVEN_SETTINGS="${i#*=}"
;;
Expand Down Expand Up @@ -86,7 +89,6 @@ if [ "${DEV_JENKINS}" == "true" ]; then
# having to restart Jenkins.
PROFILES="-P runDevRunner"
TEST_TO_RUN=""
RUN_SELENIUM=true
fi

# For now, the location of the aggregator plugin must be defined until we have
Expand Down

0 comments on commit 755f74c

Please sign in to comment.