File: rules

package info (click to toggle)
python-untokenize 0.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 120 kB
  • sloc: python: 301; makefile: 35
file content (17 lines) | stat: -rwxr-xr-x 359 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

export PYBUILD_NAME=untokenize

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_test:
ifeq ($(filter nocheck,$(DEB_BUILD_PROFILES)),)
	set -e; set -x; \
	for PY3VER in $(shell py3versions -sv); do \
	  python$$PY3VER test_untokenize.py; \
	done
	for PY3VER in $(shell py3versions -sv); do \
	  python$$PY3VER test_acid.py; \
	done
endif