1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Use python3 instead of python in test runner
Author: Guillaume Boutry <guillaume.boutry@canonical.com>
Forwarded: not-needed
Last-Update: 2026-02-27
---
Index: python-gabbi/gabbi/tests/test_runner.py
===================================================================
--- python-gabbi.orig/gabbi/tests/test_runner.py
+++ python-gabbi/gabbi/tests/test_runner.py
@@ -44,7 +44,7 @@ class ForkedWSGIServer:
def start(self):
self.process = subprocess.Popen(
[
- "python",
+ "python3",
"gabbi/tests/external_server.py",
self.host,
str(self.port)
|