docs/tutorial/testlib/pythonpath.sh
author Faheem Mitha <faheem@faheem.info>
Sat, 19 May 2018 18:26:36 +0530
branchstable
changeset 3745 9fa3585b160f
parent 3376 aad37ffd7d58
child 5227 b24de4b465ea
permissions -rw-r--r--
debian: add line to clean-docs target to delete additional docs file

# utility to setup pythonpath to point into the tested repository

export SRCDIR=`dirname $TESTDIR`
if [ -n "$PYTHONPATH" ]; then
    export HGTEST_ORIG_PYTHONPATH=$PYTHONPATH
    export PYTHONPATH=$SRCDIR:$PYTHONPATH
else
    export PYTHONPATH=$SRCDIR
fi