diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-24 18:10:13 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-24 18:42:43 -0400 |
| commit | 8a0273d15d17d0e00ba4bfa05ffe46d372f979e7 (patch) | |
| tree | df197fee491a035b228b388c15c7293d0a284b2e /.github | |
| parent | 76c1888d0b65035f9fbfc1fd31ae75c019fbb699 (diff) | |
| download | python-coveragepy-git-8a0273d15d17d0e00ba4bfa05ffe46d372f979e7.tar.gz | |
build: use pip-tools to manage *.pip from *.in
The requires.io site stopped working for me, and this is a more automated
process anyway.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/coverage.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/testsuite.yml | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 1aa3a1fd..c15eac96 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -63,9 +63,8 @@ jobs: python -VV python -m site # Need to install setuptools first so that ci.pip will succeed. - python -m pip install -c requirements/pins.pip setuptools wheel + python -m pip install -c requirements/ci.pip setuptools wheel python -m pip install -r requirements/ci.pip - python -m pip install -c requirements/pins.pip tox-gh-actions - name: "Run tox coverage for ${{ matrix.python-version }}" env: diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 6b0de1b3..268eb652 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -58,9 +58,8 @@ jobs: python -VV python -m site # Need to install setuptools first so that ci.pip will succeed. - python -m pip install -c requirements/pins.pip setuptools wheel + python -m pip install -c requirements/ci.pip setuptools wheel python -m pip install -r requirements/ci.pip - python -m pip install -c requirements/pins.pip tox-gh-actions - name: "Run tox for ${{ matrix.python-version }}" continue-on-error: true |
