annotate docs/tutorial/testlib/pythonpath.sh @ 3974:fe5fd6509930

cleanup: remove old comment that lost all meaning
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 18 Aug 2018 01:03:19 +0200
parents aad37ffd7d58
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3376
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
1 # utility to setup pythonpath to point into the tested repository
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
2
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
3 export SRCDIR=`dirname $TESTDIR`
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
4 if [ -n "$PYTHONPATH" ]; then
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
5 export HGTEST_ORIG_PYTHONPATH=$PYTHONPATH
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
6 export PYTHONPATH=$SRCDIR:$PYTHONPATH
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
7 else
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
8 export PYTHONPATH=$SRCDIR
aad37ffd7d58 doc: import the training support
Boris Feld <boris.feld@octobus.net>
parents:
diff changeset
9 fi