Mercurial > evolve
view tests/testlib/pythonpath.sh @ 6884:053ce6e0b3b7 stable
tests: add a correct test header to test-tutorial.t
Otherwise the title of the entire HTML doc is "Initial setup".
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Wed, 02 Oct 2024 20:13:39 +0400 |
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