1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE := 1
export PYBUILD_NAME := elasticsearch
# disable the vectors tests because sentence_transformers is missing in Debian
export PYBUILD_TEST_ARGS = {dir}/test_elasticsearch \
--ignore={dir}/test_elasticsearch/test_dsl/test_integration/test_examples/_async/test_vectors.py \
--ignore={dir}/test_elasticsearch/test_dsl/test_integration/test_examples/_sync/test_vectors.py
%:
dh $@ --with sphinxdoc --buildsystem=pybuild
execute_after_dh_auto_build:
PYTHONPATH=../.. $(MAKE) -C docs/sphinx html
|