Skip to content

Commit 1a333c9

Browse files
committed
initial travis CI support
1 parent 2ae7b02 commit 1a333c9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
python:
3+
- 2.6
4+
- 2.7
5+
- 3.3
6+
before_install:
7+
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then
8+
pip install unittest2;
9+
fi
10+
- pip install "numpy==1.7.0"
11+
install:
12+
- python setup.py install
13+
script:
14+
- python setup.py test
15+
notifications:
16+
email: false

0 commit comments

Comments
 (0)