Test httplib2 transport package on travis (#135)
diff --git a/scripts/travis.sh b/scripts/travis.sh
index 7359a0c..9e11de8 100755
--- a/scripts/travis.sh
+++ b/scripts/travis.sh
@@ -14,6 +14,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+set -eo pipefail
+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
ROOT=$( dirname "$DIR" )
@@ -36,4 +38,12 @@
fi
# Run tox.
+echo "Running tox..."
tox
+
+# Run tox for sub-packages.
+if [[ $TOXENV != "docs" && -z $SYSTEM_TEST ]]; then
+ echo "Running tox for httplib2_transport..."
+ cd httplib2_transport
+ tox
+fi