docs/tutorial/testlib/pythonpath.sh
author Anton Shestakov <av6@dwimlabs.net>
Tue, 05 May 2020 16:27:02 +0800
changeset 5337 9eba849b4c3d
parent 3376 aad37ffd7d58
child 5227 b24de4b465ea
permissions -rw-r--r--
tests: remove "second diverged revision" from a phase divergence test It was basically testing the same thing twice with a different comment.

# 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