3e737ef2bf3ef962852a3838837d5439bfd558ed
[arvados.git] / build / package-testing / test-package-python27-python-arvados-python-client.sh
1 #!/bin/sh
2 # Copyright (C) The Arvados Authors. All rights reserved.
3 #
4 # SPDX-License-Identifier: AGPL-3.0
5
6 PYTHON=`ls /usr/share/python2.7/dist/python-arvados-python-client/bin/python2.7`
7
8 if [ "$PYTHON" != "" ]; then
9   set -e
10   exec $PYTHON <<EOF
11 import arvados
12 print "Successfully imported arvados"
13 EOF
14 else
15         exit 1
16 fi