tests/testlib/pythonpath.sh
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 20 Dec 2017 13:41:33 +0100
changeset 3321 14024940f369
parent 2046 994d81caec68
child 4332 9980df8eda98
permissions -rw-r--r--
stablesort: rework jump gathering The old code was buggy in some case, the new code give the same result as the 'headstart' version.

# 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