From 21e1cacb23e944a4b210905a6799b0cb01778386 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 27 Mar 2024 11:46:23 +0100 Subject: [PATCH] Stop wasting time/energy --- .github/workflows/ci-supported-pythons.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-supported-pythons.yml b/.github/workflows/ci-supported-pythons.yml index 07a3716..cb70c22 100644 --- a/.github/workflows/ci-supported-pythons.yml +++ b/.github/workflows/ci-supported-pythons.yml @@ -70,6 +70,9 @@ jobs: # Ensure tests run against wheel. rm -rf src - - run: python -Im tox run --installpkg dist/*.whl -f py$(echo ${{ matrix.python-version }} | tr -d .) + # To conserve CI resources, we've commented the next step out to not + # actually run the tests. Just remove the 'echo' to run them. + - name: Run tox environments for ${{ matrix.python-version }} + run: echo python -Im tox run --installpkg dist/*.whl -f py$(echo ${{ matrix.python-version }} | tr -d .) ...