https://github.com/fhcrc/deenurp
Raw File
Tip revision: 255d4330b8be2653935175d590af3cf183a06520 authored by Chris Rosenthal on 28 August 2024, 18:04:22 UTC
py3 update
Tip revision: 255d433
run.sh
#!/bin/bash

set -e

TESTS_DIR=$(dirname $BASH_SOURCE)

# to include a test, add a directory to the list below; lines
# beginning with '#' are skipped
while read subdir; do
    if echo $subdir | grep -qv -E '^#'; then
	echo $subdir
	(cd $TESTS_DIR/$subdir && ./run.sh)
	# (cd $TESTS_DIR/$subdir && bash -v ./run.sh)
    fi
done <<EOF
search-select
fill-lonely
pairwise-distances
hrefpkg-build
filter-outliers
EOF

exit
back to top