diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-08-19 11:21:43 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-08-19 11:21:43 -0400 |
commit | c1189149053228204277708cc01037e6c9891d37 (patch) | |
tree | 428c25de7334c2df058ef87f846f33f5c0390f3c /bin/tests_public27.sh | |
parent | a26ab9064bc34e6695cb1e255522fab3f55deeb8 (diff) | |
download | astroconda-control-master.tar.gz |
Diffstat (limited to 'bin/tests_public27.sh')
-rwxr-xr-x | bin/tests_public27.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/tests_public27.sh b/bin/tests_public27.sh index 1fa26b3..7f83419 100755 --- a/bin/tests_public27.sh +++ b/bin/tests_public27.sh @@ -7,11 +7,14 @@ name=conda context=public repo=http://ssb.stsci.edu/astroconda +# use RTX +test_from+='x' + # Activate environment source activate rt_${context}27 # Update environment -conda update -q -y --override-channels -c defaults -c $repo --all +conda update -q -y --override-channels -c $repo -c defaults --all source /eng/ssb/auto/astroconda/include/post-common.sh @@ -31,6 +34,8 @@ set -x [[ -d $LOGDIR ]] && [[ $LOGDIR != ^/$ ]] && rm -f "$LOGDIR/*" pushd $LOGDIR time pdkrun --parallel=${CPU_COUNT} -r "${tests[@]}" + retval=$? popd cat ${PDK_LOG}* | ssh iraf@ssb "irafdev ; pdk import -" +exit $retval |