Skip to content

Commit

Permalink
Remove debug flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopheDuong committed Mar 22, 2021
1 parent 5149f99 commit 90d3d14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/bin/ci_integration_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if [[ "$connector" == "all" ]] ; then
echo "Running: ./gradlew --no-daemon --scan integrationTest"
./gradlew --no-daemon --scan integrationTest
else
if [[ "$connector" == *"connector"* ]] || [[ "$connector" == *"bases"* ]]; then
if [[ "$connector" == *"connectors"* ]] || [[ "$connector" == *"bases"* ]]; then
connector_name=$(echo $connector | cut -d / -f 2)
selected_integration_test=$(echo "$all_integration_tests" | grep "^$connector_name$" || echo "")
integrationTestCommand="$(_to_gradle_path "airbyte-integrations/$connector" integrationTest)"
Expand All @@ -22,8 +22,8 @@ else
integrationTestCommand=":airbyte-integrations:connectors:$connector:integrationTest"
fi
if [ -n "$selected_integration_test" ] ; then
echo "Running: ./gradlew --no-daemon --scan --debug $integrationTestCommand"
./gradlew --no-daemon --scan --debug "$integrationTestCommand"
echo "Running: ./gradlew --no-daemon --scan $integrationTestCommand"
./gradlew --no-daemon --scan "$integrationTestCommand"
else
echo "Connector '$connector' not found..."
exit 1
Expand Down

0 comments on commit 90d3d14

Please sign in to comment.