Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / tests / testChildren.sh
diff --git a/vendor/drush/drush/tests/testChildren.sh b/vendor/drush/drush/tests/testChildren.sh
deleted file mode 100755 (executable)
index 372ce72..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# See https://github.com/drush-ops/drush/pull/1426 for background information.
-#
-# $AUTH_TOKEN is provided via a secure Travis environment variable.
-# Secure environment variables are not set for pull requests that
-# originated from another repository, so skip child tests if $AUTH_TOKEN
-# is empty.
-if [ -n "$AUTH_TOKEN" ]
-then
-  # After a travis build succeeds, run tests from any child repository defined in $TEST_CHILDREN
-  for CHILD in $TEST_CHILDREN
-  do
-    BUILD_NUM=$(curl -s "https://api.travis-ci.org/repos/$CHILD/builds" | grep -o '^\[{"id":[0-9]*,' | grep -o '[0-9]' | tr -d '\n')
-    echo "Restarting build $BUILD_NUM for $CHILD"
-    curl -X POST https://api.travis-ci.org/builds/$BUILD_NUM/restart --header "Authorization: token "$AUTH_TOKEN
-  done
-fi