02da021aff8041e5d2499b66093f71a9d998d6e4
[arvados.git] / build / package-testing / test-package-python27-python-arvados-cwl-runner.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 arvados-cwl-runner --version
8 set +e
9
10 PYTHON=`ls /usr/share/python2.7/dist/python-arvados-cwl-runner/bin/python2.7`
11
12 if [ "$PYTHON" != "" ]; then
13   set -e
14   exec $PYTHON <<EOF
15 import arvados_cwl
16 print "arvados-cwl-runner version", arvados_cwl.__version__
17 EOF
18 else
19         exit 1
20 fi