From 88c8e7226d10dd76250319621686bf05534b1c64 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Sat, 23 Dec 2023 16:54:51 +0200 Subject: [PATCH] Use simpler `run: tox -e py` incantation Co-authored-by: Christian Clauss Signed-off-by: Aarni Koskela --- .github/workflows/tox.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index d1aec7f2..ccfdd4b5 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -18,15 +18,4 @@ jobs: tox.ini setup.py - run: pip install tox - - if: matrix.python == '3.7' - run: TOXENV=py37 tox - - if: matrix.python == '3.8' - run: TOXENV=py38 tox - - if: matrix.python == '3.9' - run: TOXENV=py39 tox - - if: matrix.python == '3.10' - run: TOXENV=py310 tox - - if: matrix.python == '3.11' - run: TOXENV=py311 tox - - if: matrix.python == '3.12' - run: TOXENV=py312 tox + - run: tox -e py