summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-11-10 12:16:08 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-11-10 12:16:08 -0500
commit77114aede5de44afdec5b5a69dcf0be6aaa10d44 (patch)
treecc628f828297d411a861834482b9fe3630e2c434
parent958ce2304e153b274e2ff7b40b1e7d5ddd214904 (diff)
downloadpython-setuptools-git-77114aede5de44afdec5b5a69dcf0be6aaa10d44.tar.gz
Revert ".github/workflows/main.yml: Add integration testing with setuptools"
This reverts commit 9e98a85a2180d4301e7091c6173f919ddd3e6787. That commit was only relevant to pypa/distutils.
-rw-r--r--.github/workflows/main.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 41490892..a82b6fd2 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -35,40 +35,6 @@ jobs:
${{ runner.os }},
${{ matrix.python }}
- ci_setuptools:
- # Integration testing with setuptools
- strategy:
- matrix:
- python: [3.9]
- platform: [ubuntu-latest]
- runs-on: ${{ matrix.platform }}
- env:
- SETUPTOOLS_USE_DISTUTILS: local
- steps:
- - uses: actions/checkout@v2
- - name: Setup Python
- uses: actions/setup-python@v2
- with:
- python-version: ${{ matrix.python }}
- - name: Install tox
- run: |
- python -m pip install tox
- - name: Check out pypa/setuptools
- uses: actions/checkout@v2
- with:
- repository: pypa/setuptools
- ref: main
- path: integration/setuptools
- - name: Replace vendored distutils
- run: |
- cd integration/setuptools/setuptools
- rm -rf _distutils
- cp -rp ../../../distutils _distutils
- - name: Run setuptools tests
- run: |
- cd integration/setuptools
- tox
-
release:
needs: test
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')