view tests/testlib/pythonpath.sh @ 5789:d0389ddf402d

changelog: add an entry aboutt improved divergence resolution
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 22 Feb 2021 17:37:53 +0100
parents 277b45cf0dda
children
line wrap: on
line source

# utility to setup pythonpath to point into the tested repository

export SRCDIR="`dirname $TESTDIR`"
if [ -n "$PYTHONPATH" ]; then
    export HGTEST_ORIG_PYTHONPATH=$PYTHONPATH
    if uname -o 2> /dev/null | grep -q Msys; then
        export PYTHONPATH="$SRCDIR;$PYTHONPATH"
    else
        export PYTHONPATH=$SRCDIR:$PYTHONPATH
    fi
else
    export PYTHONPATH=$SRCDIR
fi