aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael J Gruber <git@grubix.eu>2025-06-20 16:51:39 +0200
committerDavid Bremner <david@tethera.net>2025-06-22 16:02:31 -0300
commit5f199e89c7e3f061f1c6403ac77fbacf564ecf85 (patch)
tree6064c5742a89e911674dc9aa6a72e631f41ad8eb /test
parentd5ab2f0c02da4415e8775847ebc01559c9652e4c (diff)
test: do not add legacy bindings to PYTHONPATH
d526797a ("python: move legacy python bindings to contrib.", 2025-02-15) moved the legacy python bindings away from the location in `bindingss/`. Do not add that location to the PYTHONPATH since it is obsolete.
Diffstat (limited to 'test')
-rw-r--r--test/test-lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-lib.sh b/test/test-lib.sh
index 059e110c..5b3cd454 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -896,7 +896,7 @@ test_done () {
test_python () {
# Note: if there is need to print debug information from python program,
# use stdout = os.fdopen(6, 'w') or stderr = os.fdopen(7, 'w')
- PYTHONPATH="$NOTMUCH_BUILDDIR/bindings/python-cffi/build/stage:$NOTMUCH_SRCDIR/bindings/python${PYTHONPATH:+:$PYTHONPATH}" \
+ PYTHONPATH="$NOTMUCH_BUILDDIR/bindings/python-cffi/build/stage${PYTHONPATH:+:$PYTHONPATH}" \
$NOTMUCH_PYTHON -B - > OUTPUT
}