We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 979b439 commit 51f2485Copy full SHA for 51f2485
.travis.yml
@@ -36,6 +36,11 @@ jobs:
36
- python: 3.5
37
env:
38
- DEPENDS="-r requirements.txt"
39
+ # Clean install
40
+ - python: 3.5
41
+ env:
42
+ - DEPENDS=""
43
+ - CHECK_TYPE=skiptests
44
# Absolute minimum dependencies
45
46
@@ -105,6 +110,7 @@ install:
105
110
fi
106
111
# Basic import check
107
112
- python -c 'import nibabel; print(nibabel.__version__)'
113
+ - if [ "$CHECK_TYPE" == "skiptests" ]; then exit 0; fi
108
114
109
115
before_script:
116
# Point to nibabel data directory
0 commit comments