#!/usr/bin/make -f

export DH_VERBOSE=1

export PYBUILD_NAME=pynwb
# hopefully would pass with release after 2.5.0
export PYBUILD_TEST_ARGS=-k 'not test_validate_file_no_cache'

%:
	dh $@ --buildsystem=pybuild

override_dh_install:
	dh_install
	find debian -name "test_*.nwb" -delete
	rm -f .coverage.*
