File: .travis.yml

package info (click to toggle)
python-meshio 2.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 512 kB
  • sloc: python: 6,015; makefile: 36
file content (31 lines) | stat: -rw-r--r-- 427 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
dist: trusty

language: python

python:
    - '2.7'
    - '3.4'

virtualenv:
  system_site_packages: true

addons:
  apt:
    packages:
      - python-h5py
      - python3-h5py
      - python-numpy
      - python3-numpy
      - python-vtk6

before_install:
  - pip install -U pytest pytest-cov

install:
  - pip install .

script:
  - cd test/ && pytest --cov meshio

after_success:
  - bash <(curl -s https://codecov.io/bash)