File: rules

package info (click to toggle)
python-http-ece 1.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 124 kB
  • sloc: python: 740; makefile: 8; sh: 5
file content (11 lines) | stat: -rwxr-xr-x 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/make -f

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

override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
	set -e ; set -x ; for pyvers in `py3versions -rv 2>/dev/null` ; do \
		python$$pyvers -m pytest -v http_ece/tests ; \
	done
endif