pytest-mock/debian/rules
2023-10-13 19:39:50 +02:00

35 lines
1,014 B
Makefile
Executable file

#! /usr/bin/make -f
export PYBUILD_NAME=pytest-mock
# Add the pytest-mock egg to the build dir, so pytest can find it when
# running the tests.
# The --assert=plain is needed to skip four tests; see
# https://github.com/pytest-dev/pytest-mock/issues/102
# for more information.
export PYBUILD_BEFORE_TEST={interpreter} setup.py egg_info && cp -r {dir}/src/*.egg-info {build_dir}
export PYBUILD_TEST_ARGS=--assert=plain {dir}/tests
export PYBUILD_AFTER_TEST=rm -rf {build_dir}/*.egg-info {dir}/src/*.egg-info
ifeq (,$(findstring nodoc,$(DEB_BUILD_OPTIONS)))
%:
dh $@ --with sphinxdoc --buildsystem=pybuild
execute_after_dh_auto_build:
mkdir docs/_static
sphinx-build -W --keep-going -b html docs docs/_build/html
override_dh_installdocs:
dh_installdocs -ppython-pytest-mock-doc --doc-main-package=python3-pytest-mock
dh_installdocs --remaining-packages
else
%:
dh $@ --buildsystem=pybuild
endif
override_dh_auto_clean:
dh_auto_clean
rm -rf docs/_build docs/_static
rm -f src/pytest_mock/_version.py