Mercurial > evolve
view tests/testlib/pythonpath.sh @ 6020:c8a75487cb1c stable
changelog: add a 10.3.4 section
(This change mostly exist to test automatic synchronisation between heptapod and
the main repository).
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 24 Aug 2021 03:43:46 +0200 |
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