summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2026-01-06 00:17:06 -0500
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2026-01-06 11:32:42 -0800
commit1dd9c57a28e0839180995ad44cadf10b21dcc416 (patch)
tree9e93c537f4b6a7383f77fa8787950b4aebfb98c3 /.github
parent4525c2e0ad991d067559faa78e82634e060fe337 (diff)
downloadgit-repo-1dd9c57a28e0839180995ad44cadf10b21dcc416.tar.gz
tests: drop tox support
This hasn't been working out as well as we'd hope. Tox relies on the system having Python versions installed which distros don't tend to carry anymore. Our custom run_tests leverages vpython when possible to run stable Python 3.8 & 3.11 versions which is providing an OK level of coverage in practice. Change-Id: Ida517f7be47ca95703e43bc0af5a24dd70c0467e Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/540001 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: Gavin Mak <gavinmak@google.com> Commit-Queue: Mike Frysinger <vapier@google.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml
index 53d6df355..7342818e8 100644
--- a/.github/workflows/test-ci.yml
+++ b/.github/workflows/test-ci.yml
@@ -27,6 +27,6 @@ jobs:
27 - name: Install dependencies 27 - name: Install dependencies
28 run: | 28 run: |
29 python -m pip install --upgrade pip 29 python -m pip install --upgrade pip
30 python -m pip install tox tox-gh-actions 30 python -m pip install pytest
31 - name: Test with tox 31 - name: Run tests
32 run: tox 32 run: python -m pytest