File: .travis.yml

package info (click to toggle)
python-blosc 1.7.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 384 kB
  • sloc: python: 848; ansic: 462; makefile: 223; sh: 6
file content (32 lines) | stat: -rw-r--r-- 509 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
29
30
31
32
sudo: false
language: python

python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
  include:
    - python: 3.7
      dist: xenial
      sudo: true

before_install:
  - uname -a
  - free -m
  - df -h
  - ulimit -a
  - pip install -q numpy
  - pip install -q psutil
  - python -V
install:
  - pip install .

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