Changeset 29c0ca5 in trunk


Ignore:
Timestamp:
2023-04-28T17:51:22Z (2 years ago)
Author:
Jean-Paul Calderone <exarkun@…>
Branches:
master
Children:
04ef5a0
Parents:
a088b1d
Message:

put the tox installation near other software installation

Location:
.circleci
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .circleci/create-virtualenv.sh

    ra088b1d r29c0ca5  
    4848# explicitly ask for one.
    4949"${PIP}" install --upgrade setuptools==44.0.0 wheel
     50
     51# Just about every user of this image wants to use tox from the bootstrap
     52# virtualenv so go ahead and install it now.
     53"${PIP}" install "tox~=3.0"
  • TabularUnified .circleci/populate-wheelhouse.sh

    ra088b1d r29c0ca5  
    3232    "${PROJECT_ROOT}"[testenv] \
    3333    "${PROJECT_ROOT}"[test]
    34 
    35 # Put tox right into the bootstrap environment because everyone is going to
    36 # need to use it.
    37 "${PIP}" install "tox~=3.0"
  • TabularUnified .circleci/setup-virtualenv.sh

    ra088b1d r29c0ca5  
    2929export PIP_NO_INDEX="1"
    3030
    31 # Get tox inside the bootstrap virtualenv since we use tox to manage the rest
    32 # of the environment.
    33 "${BOOTSTRAP_VENV}"/bin/pip install tox
    34 
    3531# Get everything else installed in it, too.
    3632"${BOOTSTRAP_VENV}"/bin/tox \
Note: See TracChangeset for help on using the changeset viewer.