File: rules

package info (click to toggle)
q2-metadata 2020.11.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 540 kB
  • sloc: python: 1,583; makefile: 30; sh: 13
file content (23 lines) | stat: -rwxr-xr-x 722 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/make -f

# DH_VERBOSE := 1
export LC_ALL=C.UTF-8

# we need datatables.min.js for the tests
export PYBUILD_BEFORE_TEST=ln -s \
	/usr/share/javascript/jquery-datatables/jquery.dataTables.min.js \
	{build_dir}/q2_metadata/templates/tabulate/datatables.min.js

export PYBUILD_BEFORE_INSTALL=rm -vf {build_dir}/.coverage*

export PYBUILD_AFTER_INSTALL=ln -vsf \
	/usr/share/javascript/jquery-datatables/jquery.dataTables.min.js \
	/{destdir}/{install_dir}/q2_metadata/templates/tabulate/datatables.min.js

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

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	dh_auto_test -- -s custom --test-args="cd {build_dir}; py.test-3 --cov=q2_metadata"
endif