File: rules

package info (click to toggle)
pypandoc 1.15%2Bds0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 1,299; sh: 12; makefile: 10
file content (13 lines) | stat: -rwxr-xr-x 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f

export PYBUILD_NAME=pypandoc
%:
	dh $@ --buildsystem=pybuild

override_dh_auto_test:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
	set -ex; for py in `py3versions --supported 2>/dev/null`; do \
	    echo "Testing with $${py} pytest:" ; \
	    $${py} -m pytest tests.py 2>&1 ; \
	done
endif