diff --git a/.travis.yml b/.travis.yml index d1da4418..01f8ee15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,8 @@ cache: install: - set -eo pipefail - pip install flake8 - - make build - - make install + - make pydist + - make install-dist - pip install -r server/requirements-dev.txt jobs: diff --git a/makefile b/makefile index 978c48ee..1e0b1514 100644 --- a/makefile +++ b/makefile @@ -122,6 +122,10 @@ install-release : uninstall pip install --no-cache-dir cellxgene @echo "Installed cellxgene from pypi.org" +# install from dist +install-dist : uninstall + pip install dist/cellxgene*.tar.gz + uninstall : pip uninstall -y cellxgene || :