File: .travis.yml

package info (click to toggle)
pandas 0.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,480 kB
  • sloc: python: 57,610; ansic: 3,960; makefile: 77; sh: 8
file content (16 lines) | stat: -rw-r--r-- 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: python

python:
  - 2.5
  - 2.6
  - 2.7
  - 3.1
  - 3.2

install:
  - "if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors simplejson; fi"
  - pip install --use-mirrors cython numpy nose pytz

script:
  - python setup.py build_ext install
  - nosetests --exe -w /tmp pandas.tests