From 560e4e8d854163c9739a19f7c6a623f25b782a22 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sun, 29 Aug 2021 09:36:10 +0300 Subject: [PATCH] tox is lowercase https://tox.readthedocs.io/ https://twitter.com/jugmac00/status/1431712286557843457 --- content/actions/guides/building-and-testing-python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/actions/guides/building-and-testing-python.md b/content/actions/guides/building-and-testing-python.md index 5b6e87d4f331..57a627a6f538 100644 --- a/content/actions/guides/building-and-testing-python.md +++ b/content/actions/guides/building-and-testing-python.md @@ -350,9 +350,9 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - - name: Install Tox and any other packages + - name: Install tox and any other packages run: pip install tox - - name: Run Tox + - name: Run tox # Run tox using the version of Python in `PATH` run: tox -e py ```