From 6af11758d1d1740efaf152e202e76ccd53dfdf1a Mon Sep 17 00:00:00 2001 From: Avasam Date: Sat, 20 Dec 2025 12:09:26 -0500 Subject: [PATCH] ci_setuptools: Skip tests that distutils has no effect on --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 834a1ad3..d17219eb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -234,7 +234,9 @@ jobs: - name: Run setuptools tests run: | cd integration/setuptools - tox + # Skip tests that distutils has no effect on. + # Speedup CI and avoid unexpected failures due to updates. + tox -- -p no:ruff -p no:mypy env: VIRTUALENV_NO_SETUPTOOLS: null