Skip to content
Snippets Groups Projects
Commit 8fb84c14 authored by Bruce Jin's avatar Bruce Jin
Browse files

Edit run-tests.sh to skip extended indexer tests.

parent 94a92c4f
No related branches found
No related tags found
1 merge request!602aws-sync-dev-to-master
...@@ -56,7 +56,17 @@ trap '{ ...@@ -56,7 +56,17 @@ trap '{
#### RUN INTEGRATION TEST ######################################################################### #### RUN INTEGRATION TEST #########################################################################
mvn -ntp test -f "$SCRIPT_SOURCE_DIR"/../pom.xml -Dcucumber.options="--plugin junit:target/junit-report.xml" CUCUMBER_PROPERTY="$SCRIPT_SOURCE_DIR/../src/test/resources/cucumber.properties"
while IFS='=' read -r key value
do
key=$(echo $key | tr '.' '_')
eval ${key}=\${value}
done < "$CUCUMBER_PROPERTY"
echo "Cucumber option cucumber.options = " ${cucumber_options}
mvn -ntp test -f "$SCRIPT_SOURCE_DIR"/../pom.xml -Dcucumber.options="--plugin junit:target/junit-report.xml $cucumber_options"
# mvn -Dmaven.surefire.debug test -f "$SCRIPT_SOURCE_DIR"/../pom.xml -Dcucumber.options="--plugin junit:target/junit-report.xml" # mvn -Dmaven.surefire.debug test -f "$SCRIPT_SOURCE_DIR"/../pom.xml -Dcucumber.options="--plugin junit:target/junit-report.xml"
TEST_EXIT_CODE=$? TEST_EXIT_CODE=$?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment