#!/usr/bin/make -f

# Uncomment below to enable verbose build messages.
#export DH_VERBOSE = 1

# Run the tests in 8 parallel threads.
# Disable the tests that don't currently work.
# * test_dateutil is broken because Debian's package diverges from upstream.
#   <https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/873#issuecomment-2746580287>
# * test_charset_normalizer is broken because of an upstream mypyc change.
#   <https://github.com/jawah/charset_normalizer/issues/714>*
export PYBUILD_TEST_ARGS=-n 8 -k 'not test_dateutil and not test_charset_normalizer'

%:
	dh $@ --buildsystem=pybuild
