forked from lmfit/uncertainties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (33 loc) · 920 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Config file for automatic testing at travis-ci.org
language: python
python:
# Travis does not have Python 2.4 and 2.5:
# - 2.4
# - 2.5
- 2.6
- 2.7
- 3.2
- 3.3
# Travis does not yet have Python 3.4:
# - 3.4
matrix:
env:
# !!! Is wheel necessary?
# command to install dependencies
before_install:
# Install the pip that supports wheel
- pip install setuptools --upgrade
- pip install pip --upgrade
- pip install wheel --upgrade
#- sudo apt-get install python-numpy cython libatlas-dev liblapack-dev gfortran
- sudo apt-get update
# !!! Is astropy/wheel necessary??
install:
- pip install --find-links http://wheels2.astropy.org/ --use-wheel --use-mirrors --upgrade "numpy==1.8.0"
# command to run tests
script:
- python setup.py egg_info
- python setup.py nosetests -sv
# Generate documentation
#- cd doc
#- make html