docs/tutorial/testlib/pythonpath.sh
author Boris Feld <boris.feld@octobus.net>
Fri, 06 Dec 2019 17:18:49 +0100
changeset 4986 1214f3d085a9
parent 3376 aad37ffd7d58
child 5227 b24de4b465ea
permissions -rw-r--r--
ci: add job to build and archive the documentation

# 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