Skip to content

Commit 4cbd963

Browse files
committed
NF - add travis CI setup to repository
``.travis.yml`` file useful for automated testing on commits, on the Travis-CI service. Not current enabled for nipy/nibabel repository, but useful for user repositories.
1 parent 6a61579 commit 4cbd963

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# vim ft=yaml
2+
language: python
3+
python:
4+
- "2.6"
5+
- "2.7"
6+
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
7+
install:
8+
- pip install numpy --use-mirrors
9+
# command to run tests, e.g. python setup.py test
10+
script:
11+
- nosetests nibabel

0 commit comments

Comments
 (0)