diff options
author | Mike Frysinger <vapier@google.com> | 2021-03-10 22:31:41 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2021-04-01 14:57:05 +0000 |
commit | beea5de84297518634de48b20961efa68a57d797 (patch) | |
tree | 53fc31b871b5ffff87eaca0f0f4d210168a073ba /run_tests | |
parent | bfbcfd904592a2f61e11a12eec281102230281d6 (diff) | |
download | git-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-x | run_tests | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||