File: rules

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

export PYBUILD_NAME=qasync
export PYBUILD_TEST_ARGS=-k 'not test_regression_bug13'


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

override_dh_auto_test:
	set -e; \
	for binding in pyqt5 pyqt6 pyside6 ; do \
		echo Testing $$binding ...; \
		QT_API=$$binding dh_auto_test; \
	done