]> git.notmuchmail.org Git - notmuch/commit
test: add a function to run Python tests
authorThomas Jost <schnouki@schnouki.net>
Wed, 7 Dec 2011 09:46:17 +0000 (10:46 +0100)
committerDavid Bremner <bremner@debian.org>
Sun, 11 Dec 2011 14:40:14 +0000 (10:40 -0400)
commit2621f6cef19acc99745c389f5e324fea55f655d8
tree9020f0e0ed2a7d8e75c50e0f301e7201d04924be
parent3aca0ea421786e7dc6416390f236886e2f03c58e
test: add a function to run Python tests

The new test_python() function makes writing Python tests a little easier:
- it sets the environment variables as needed
- it redirects stdout to the OUTPUT file (like test_emacs()).

This commit also declares python as an external prereq.

The stdout redirection is required to avoid trouble when running commands like
"python 'script' | sort > OUTPUT": in such a case, any error due to a missing
external prereq would be "swallowed" by sort, resulting to a failed test instead
of a skipped one.
test/python
test/test-lib.sh