Refactor the multi-host salt install page.
[arvados.git] / build / package-testing / test-package-python3-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 set -e
7
8 arv-put --version >/dev/null
9
10 PYTHON=`ls /usr/share/python3*/dist/python3-arvados-python-client/bin/python3 |head -n1`
11
12 $PYTHON << EOF
13 import arvados
14 print("Successfully imported arvados")
15 EOF