#!/usr/bin/make -f

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

override_dh_installsystemd:
	dh_installsystemd --no-enable --no-start

override_dh_auto_test:
	dh_auto_test -- --system=custom --test-args='cd {build_dir}; python3 -m pytest $(CURDIR)/tests'

override_dh_auto_clean:
	dh_auto_clean
	rm -rf .pytest_cache src/vanguards.egg-info
