view tests/testlib/pythonpath.sh @ 6601:7a9d3fde811f

tests: clarify what branch we're closing Turns out, the other topological head is on double//slash branch, but the one we're actually closing here is on default.
author Anton Shestakov <av6@dwimlabs.net>
date Mon, 30 Oct 2023 14:26:30 -0300
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