File: test-python3.patch

package info (click to toggle)
python-gabbi 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 972 kB
  • sloc: python: 3,788; makefile: 62; sh: 35
file content (18 lines) | stat: -rw-r--r-- 661 bytes parent folder | download
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)