diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-29 13:17:53 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-29 13:17:53 -0500 |
| commit | 9f2b840b218b6f46ede9d75b3c79db1042b433dd (patch) | |
| tree | 8c30c013c122d62c9c5b50f8e934d27fc94aff2f /.github | |
| parent | 2842e802a42c7eb9fd8fc80336cb65f077dfd49c (diff) | |
| download | python-setuptools-git-9f2b840b218b6f46ede9d75b3c79db1042b433dd.tar.gz | |
Unset VIRTUALENV_NO_SETUPTOOLS for ci_setuptools because pytest-virtualenv can't install without it. Ref man-group/pytest-plugins#190
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dcd8b901..e404559b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,6 @@ on: [push, pull_request] env: # pypa/distutils#99 VIRTUALENV_NO_SETUPTOOLS: 1 - PIP_USE_PEP517: 1 jobs: test: @@ -93,6 +92,8 @@ jobs: run: | cd integration/setuptools tox + env: + VIRTUALENV_NO_SETUPTOOLS: null release: needs: test |
