summaryrefslogtreecommitdiffstats
path: root/run_tests
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2021-03-10 22:31:41 -0500
committerMike Frysinger <vapier@google.com>2021-04-01 14:57:05 +0000
commitbeea5de84297518634de48b20961efa68a57d797 (patch)
tree53fc31b871b5ffff87eaca0f0f4d210168a073ba /run_tests
parentbfbcfd904592a2f61e11a12eec281102230281d6 (diff)
downloadgit-repo-beea5de84297518634de48b20961efa68a57d797.tar.gz
tox: enable python 3.5 & 3.9 testing
We still support Python 3.5, so make sure it keeps working. Change-Id: I150158a656b26de6d733316a68a2cbb8b5b99716 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/299625 Reviewed-by: Michael Mortensen <mmortensen@google.com> Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'run_tests')
-rwxr-xr-xrun_tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests b/run_tests
index 07cd98db..6c6f8594 100755
--- a/run_tests
+++ b/run_tests
@@ -34,8 +34,8 @@ def find_pytest():
34 if ret: 34 if ret:
35 return ret 35 return ret
36 36
37 print(f'{__file__}: unable to find pytest.', file=sys.stderr) 37 print('%s: unable to find pytest.' % (__file__,), file=sys.stderr)
38 print(f'{__file__}: Try installing: sudo apt-get install python-pytest', 38 print('%s: Try installing: sudo apt-get install python-pytest' % (__file__,),
39 file=sys.stderr) 39 file=sys.stderr)
40 40
41 41