1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
#! /usr/bin/make -f
export PYBUILD_NAME=nb2plots
%:
dh $@ --with python2,python3 --buildsystem=pybuild
override_dh_auto_test:
echo "skip tests for now"
#PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="PYTHONPATH={build_dir} {interpreter} -m unittest discover -v" dh_auto_test
# run: py.test --pyargs nb2plots
# after installing: pytest, mock package; and then scripttester, sphinxtesters both to be package for debian
override_dh_auto_install:
dh_auto_install
rm -rf $(CURDIR)/debian/python-nb2plots/usr/bin/
|