tests/testlib/pythonpath.sh
author Aurélien Campéas
Tue, 26 Sep 2017 12:29:15 +0200
changeset 2985 f63c97c01f92
parent 2046 994d81caec68
child 4332 9980df8eda98
permissions -rw-r--r--
topics/ui: signal when the topics command creates a new (empty) topic

# 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