changeset 6485:623517b1d83b

packaging: use python3 instead of python in debian/rules Looks like `python` doesn't exist for certain setups, and also using python3 explicitly is better (considering our .deb building scripts/infrastructure only supports Python 3).
author Anton Shestakov <av6@dwimlabs.net>
date Fri, 07 Apr 2023 15:52:26 -0300
parents f06ba91ae68e
children 0c503c521ba5
files debian/rules
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/debian/rules	Fri Apr 07 22:01:38 2023 +0200
+++ b/debian/rules	Fri Apr 07 15:52:26 2023 -0300
@@ -16,7 +16,7 @@
 
 ifeq (,$(filter nocheck, $(DEB_BUILD_OPTIONS)))
 override_dh_auto_test: hgsrc_defined
-	cd tests && python $(HGSRC)/tests/run-tests.py --with-hg=$(HGSRC)/hg --blacklist=$(CURDIR)/debian/test-blacklist
+	cd tests && python3 $(HGSRC)/tests/run-tests.py --with-hg=$(HGSRC)/hg --blacklist=$(CURDIR)/debian/test-blacklist
 endif
 
 override_dh_python3: