Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ matrix:
- python: 2.7
env:
- INSTALL_TYPE=requirements
- python: 2.7
env:
- INSTALL_TYPE=archive
- python: 2.7
env:
- CHECK_TYPE="style"
Expand Down Expand Up @@ -122,6 +125,9 @@ install:
elif [ "$INSTALL_TYPE" == "requirements" ]; then
pip install $EXTRA_PIP_FLAGS -r requirements.txt
python setup.py install
elif [ "$INSTALL_TYPE" == "archive" ]; then
git archive -o package.tar.gz HEAD
pip install $EXTRA_PIP_FLAGS package.tar.gz
fi
# Point to nibabel data directory
- export NIBABEL_DATA_DIR="$PWD/nibabel-data"
Expand Down