#!/usr/bin/make -f

#export DH_VERBOSE = 1

export PYBUILD_NAME=cvss

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	cd tests && python3 test_cvss2.py
	cd tests && python3 test_cvss3.py
	cd tests && python3 test_cvss4.py
endif
