diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-25 08:47:06 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-25 09:07:07 -0400 |
| commit | 2d2d6088b94845ffc4062853aa7230879ee66a44 (patch) | |
| tree | 36799c50a1f2edc8ffe5a76e5e00f987d028d011 /.github/workflows/testsuite.yml | |
| parent | f88278e8102b304849f8d237314b88182658a874 (diff) | |
| download | python-coveragepy-git-2d2d6088b94845ffc4062853aa7230879ee66a44.tar.gz | |
build: a minimal tox.pip for getting tox started
No need to install a lot of junk just to have tox make a new venv and install
things into it. And then ci.pip can be much smaller, installing just what kits
need: kit.pip
Diffstat (limited to '.github/workflows/testsuite.yml')
| -rw-r--r-- | .github/workflows/testsuite.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 268eb652..1073eacc 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -57,9 +57,7 @@ jobs: set -xe python -VV python -m site - # Need to install setuptools first so that ci.pip will succeed. - python -m pip install -c requirements/ci.pip setuptools wheel - python -m pip install -r requirements/ci.pip + python -m pip install -r requirements/tox.pip - name: "Run tox for ${{ matrix.python-version }}" continue-on-error: true |
