install from dist instead of build on travis (#760)

This commit is contained in:
Charlotte Weaver
2019-05-09 15:32:06 -07:00
committed by GitHub
parent d522cc8f91
commit 2354731083
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -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:
+4
View File
@@ -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 || :