#!/usr/bin/make -f

# fake CI running, https://github.com/giampaolo/psutil/issues/2104
export APPVEYOR=
# skip tests that dont run reliably in chroot/containers
export PYBUILD_TEST_ARGS = --verbose \
                           -k '    not test_disk_partition \
			       and not test_import_all \
			       and not test_against_findmnt \
			       and not test_comparisons \
			       and not test_who \
			       and not test_invocation \
			       and not test_users \
			       and not test_procsmem \
			       and not test_all \
			   '

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_installchangelogs:
	dh_installchangelogs HISTORY.rst

override_dh_installdocs:
	dh_installdocs -X.DS_Store

override_dh_compress:
	dh_compress -X.py
