diff options
author | Julian Berman <Julian@GrayVines.com> | 2019-12-22 08:12:05 +0100 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2019-12-22 08:12:05 +0100 |
commit | 17cf5c068761501f06f412e5886a64768d36975c (patch) | |
tree | 6159172503a3c498cb0793ae8e78a37fde1d27d9 | |
parent | 7e65dd91dc2d9f3f880ff6531f0df3f844dd3f85 (diff) | |
download | jsonschema-17cf5c068761501f06f412e5886a64768d36975c.tar.gz |
python -m pip install everywhere.
-rw-r--r-- | tox.ini | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -33,14 +33,14 @@ commands = # Check to make sure that releases build and install properly build: virtualenv --quiet --python=python2.7 {envtmpdir}/venv - build: {envtmpdir}/venv/bin/pip install --quiet wheel + build: {envtmpdir}/venv/bin/python -m pip install --quiet wheel build: {envtmpdir}/venv/bin/python {toxinidir}/setup.py --quiet bdist_wheel --dist-dir={envtmpdir}/wheel - build: sh -c '{envbindir}/pip install --quiet --upgrade --force-reinstall {envtmpdir}/wheel/jsonschema*.whl' + build: sh -c '{envbindir}/python -m pip install --quiet --upgrade --force-reinstall {envtmpdir}/wheel/jsonschema*.whl' build: python2.7 {toxinidir}/setup.py --quiet sdist --dist-dir={envtmpdir}/sdist --format=gztar,zip - build: sh -c '{envbindir}/pip install --quiet --upgrade --force-reinstall {envtmpdir}/sdist/jsonschema*.tar.gz' - build: sh -c '{envbindir}/pip install --quiet --upgrade --force-reinstall {envtmpdir}/sdist/jsonschema*.zip' + build: sh -c '{envbindir}/python -m pip install --quiet --upgrade --force-reinstall {envtmpdir}/sdist/jsonschema*.tar.gz' + build: sh -c '{envbindir}/python -m pip install --quiet --upgrade --force-reinstall {envtmpdir}/sdist/jsonschema*.zip' build: {envbindir}/python -m pep517.check {toxinidir} @@ -77,7 +77,7 @@ commands = [testenv:safety] deps = safety commands = - {envbindir}/pip install '{toxinidir}[format]' + {envbindir}/python -m pip install '{toxinidir}[format]' {envbindir}/safety check [testenv:secrets] |