1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/usr/bin/make -f
# hardcode default/supported Python versions to make tests more reliable
# Note that all these packages have to be installed during tests
export DEBPYTHON_DEFAULT=2.7
export DEBPYTHON_SUPPORTED=2.6,2.7
export DEBPYTHON3_DEFAULT=3.4
export DEBPYTHON3_SUPPORTED=3.4
# enable or disable tests here:
TESTS := test101 test201 test202 test203 test204 test205 test206 test207 test301 test302 test303 test304
all: $(TESTS)
test%:
make -C t$* run
make -C t$* check
clean-test%:
make -C t$* clean
clean: $(TESTS:%=clean-%)
rm -f *\.dsc *\.tar\.gz *\.build *\.changes *\.deb
@find . -prune -name '*.egg-info' -exec rm -rf '{}' ';' || true
.PHONY: clean
|