upgrade pip and remove --user from tox install during ci (#85)

This commit is contained in:
Paul Robinson
2023-04-24 17:21:09 -06:00
committed by pacrob
parent 484b6b55cd
commit 28dbedcbfa

View File

@ -22,7 +22,9 @@ common: &common
- cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
- run:
name: install dependencies
command: python -m pip install --user tox
command: |
python -m pip install --upgrade pip
python -m pip install tox
- run:
name: run tox
command: python -m tox -r
@ -50,7 +52,9 @@ windows_steps: &windows_steps
- cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
- run:
name: install dependencies
command: python -m pip install --user tox
command: |
python -m pip install --upgrade pip
python -m pip install tox
- run:
name: run tox
command: python -m tox -r