1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#! /usr/bin/make -f
include /usr/share/dpkg/default.mk
export PYBUILD_NAME=cwl-utils
export PYBUILD_TEST_ARGS=$(DEB_BUILD_OPTION_PARALLEL:%=-n %) -k 'not (test_load_document_with_remote_uri or test_graph_split or test_remote_packing)' --pyargs cwl_utils
export PYBUILD_TEST_PYTEST=1
# test_load_document_with_remote_uri: requires external resource
# test_graph_split: requires external resource
%:
dh $@ --buildsystem=pybuild
execute_after_dh_install:
rm -Rf debian/python3-cwl-utils/usr/bin
find debian/python3-cwl-utils -name "*.cwl" | xargs chmod a+x
|