File: .travis.yml

package info (click to toggle)
pysoundfile 0.13.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 336 kB
  • sloc: python: 2,017; makefile: 160; sh: 21
file content (22 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
  - "3.9"
  - "nightly"
  - "pypy"
  # TODO: Enable pypy3 once NumPy is working there, see	
  # https://bitbucket.org/pypy/pypy/issues/1567/	
  #- "pypy3"
addons:
  apt:
    packages:
    - libsndfile1
install:
  - "if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then pip install git+https://bitbucket.org/pypy/numpy.git ; fi"
script:
  - python setup.py test