summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-01-06 18:55:43 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-01-06 18:55:43 +0000
commit2c9205f5befee894ce3233958464633bfb79ce19 (patch)
tree749b8ccb8eb57598a641dafda5cd968d1271175f /.github/workflows
parent846a6c44fb914a0dd0e9ccabe6e78fd11398fb23 (diff)
downloadpython-setuptools-git-2c9205f5befee894ce3233958464633bfb79ce19.tar.gz
Add SETUPTOOLS_USE_DISTUTILS configuration to integration tests
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index fa51eeaf..a9f37c5a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -61,6 +61,11 @@ jobs:
C:\\tools\\cygwin\\bin\\bash -l -x -c 'cd $(cygpath -u "$GITHUB_WORKSPACE") && tox -- --cov-report xml'
integration-test:
+ strategy:
+ matrix:
+ distutils:
+ - stdlib
+ - local
needs: test
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
# To avoid long times and high resource usage, we assume that:
@@ -71,6 +76,8 @@ jobs:
# "integration")
# With that in mind, the integration tests can run for a single setup
runs-on: ubuntu-latest
+ env:
+ SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }}
steps:
- uses: actions/checkout@v2
- name: Install OS-level dependencies