File: .travis.yml

package info (click to toggle)
python-blosc 1.4.4%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 380 kB
  • ctags: 304
  • sloc: python: 1,801; ansic: 384; makefile: 147
file content (28 lines) | stat: -rw-r--r-- 441 bytes parent folder | download
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
sudo: false
language: python

python:
  - 2.6
  - 2.7
  - 3.3
  - 3.4
  - 3.5

before_install:
  - uname -a
  - free -m
  - df -h
  - ulimit -a
  - pip install -q numpy
  - pip install -q psutil
  - python -V
  - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] ; then  pip install unittest2; fi
install:
  - pip install .

script:
  - mkdir empty
  - cd empty
  - python -c"import blosc; blosc.print_versions()"
  - nosetests --with-doctest blosc