mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
python-cffi: enable out-of-tree builds
This is a simple hack to enable out-of-tree builds, a concern raised by Tomi in id:m24kzjib9a.fsf@guru.guru-group.fi This change at least enables "make check" to complete without error, but I'm sure it could be improved. I am not expert enough in setuptools to know how. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net> Amended by db per id:87d06usa31.fsf@powell.devork.be
This commit is contained in:
parent
c9e55a712e
commit
ef0ab496b3
2 changed files with 9 additions and 1 deletions
8
configure
vendored
8
configure
vendored
|
@ -70,6 +70,14 @@ if [ "$srcdir" != "." ]; then
|
|||
mkdir bindings/ruby
|
||||
cp -a "$srcdir"/bindings/ruby/*.[ch] bindings/ruby
|
||||
cp -a "$srcdir"/bindings/ruby/extconf.rb bindings/ruby
|
||||
|
||||
# Use the same hack to replicate python-cffi source for
|
||||
# out-of-tree builds (again, not ideal).
|
||||
mkdir bindings/python-cffi
|
||||
cp -a "$srcdir"/bindings/python-cffi/tests \
|
||||
"$srcdir"/bindings/python-cffi/notmuch2 \
|
||||
"$srcdir"/bindings/python-cffi/setup.py \
|
||||
bindings/python-cffi/
|
||||
fi
|
||||
|
||||
# Set several defaults (optionally specified by the user in
|
||||
|
|
|
@ -8,7 +8,7 @@ fi
|
|||
|
||||
|
||||
test_begin_subtest "python cffi tests"
|
||||
pytest_dir=$NOTMUCH_SRCDIR/bindings/python-cffi/build/stage
|
||||
pytest_dir=$NOTMUCH_BUILDDIR/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
|
||||
|
|
Loading…
Reference in a new issue