diff options
| author | David Bremner <david@tethera.net> | 2019-10-19 23:10:24 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-12-03 08:12:30 -0400 |
| commit | 85adc756c97646ae63e68fc2f80afd6b34b86fa9 (patch) | |
| tree | efe3d8ae87979058017b0f27c8f323cbe2b16283 /test/T391-python-cffi.sh | |
| parent | 46e96156218e456df3fdd239e8c055220fba667a (diff) | |
tests: run python-cffi tests
The entire python-cffi test suite is considered as a single test at
the level of the notmuch test suite. This might or might not be ideal,
but it gets them run.
Diffstat (limited to 'test/T391-python-cffi.sh')
| -rwxr-xr-x | test/T391-python-cffi.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/T391-python-cffi.sh b/test/T391-python-cffi.sh new file mode 100755 index 00000000..e4f80dc6 --- /dev/null +++ b/test/T391-python-cffi.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +test_description="python bindings (pytest)" +. $(dirname "$0")/test-lib.sh || exit 1 + +if [ $NOTMUCH_HAVE_PYTHON3_CFFI -eq 0 -o $NOTMUCH_HAVE_PYTHON3_PYTEST -eq 0 ]; then + test_done +fi + + +test_begin_subtest "python cffi tests" +pytest_dir=$NOTMUCH_SRCDIR/bindings/python-cffi/build/stage +printf "[pytest]\nminversion = 3.0\naddopts = -ra\n" > $pytest_dir/pytest.ini +test_expect_success "(cd $pytest_dir && ${NOTMUCH_PYTHON} -m pytest --log-file=$TMP_DIRECTORY/test.output)" +test_done |
