1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE=1
export PYBUILD_NAME=sphinx_toolbox
export PYBUILD_TEST_ARGS=\
--ignore=tests/test_issues_output/test_source_output.py \
--ignore=tests/test_output/test_output.py \
--ignore=tests/test_more_autodoc/test_autodoc_typehints.py \
-W "ignore:Module already imported:pytest.PytestWarning" \
-W "ignore::DeprecationWarning" \
-W "ignore::PendingDeprecationWarning" \
-k 'not test_visit_issue_node \
and not test_latex_output \
and not test_output_github \
and not test_output_sphinx \
'
%:
dh $@ --buildsystem=pybuild
override_dh_auto_clean:
dh_auto_clean
rm -rf .mypy_cache .pytest_cache
|