Description: Adjust Python interpreter name in the tests.
Author: Andrius Merkys <merkys@debian.org>
Forwarded: not-needed
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -13,6 +13,6 @@
 for test in tests:
     if test not in excludes:
         six.print_('%s ...' % test)
-        subprocess.call(['python', './%s' % test])
+        subprocess.call(['python3', './%s' % test])
 
 six.print_('Done.')
--- a/tests/module_execute.py
+++ b/tests/module_execute.py
@@ -11,7 +11,7 @@
     os.unlink(OUTPUT_FILENAME)
 
 os.chdir(os.path.dirname(__file__))
-cmd = 'python -m docxtpl %s %s %s %s %s' % (TEMPLATE_PATH, JSON_PATH, OUTPUT_FILENAME, OVERWRITE, QUIET)
+cmd = 'python3 -m docxtpl %s %s %s %s %s' % (TEMPLATE_PATH, JSON_PATH, OUTPUT_FILENAME, OVERWRITE, QUIET)
 print('Executing "%s" ...' % cmd)
 os.system(cmd)
 
