forked from CPJKU/madmom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (52 loc) · 1.66 KB
/
.travis.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
language: python
matrix:
include:
- python: 2.7
dist: xenial
sudo: required
- python: 3.5
dist: xenial
sudo: required
- python: 3.6
dist: xenial
sudo: required
- python: 3.7
dist: xenial
sudo: required
before_install:
# get a working ffmpeg
- sudo wget -O ffmpeg.tar.gz https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
- sudo mkdir ffmpeg
- sudo tar xvf ffmpeg.tar.gz -C ffmpeg --strip-components=1
- sudo cp ffmpeg/ffmpeg ffmpeg/ffprobe /usr/bin/
# install system libraries
- sudo apt-get update -qq
- sudo apt-get install -qq libfftw3-dev
# install numpy etc. via miniconda
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda config --add channels conda-forge
- conda config --add channels pypi
- conda info -a
- deps='pip libgfortran cython numpy scipy pep8'
- conda create -q -n test-environment "python=$TRAVIS_PYTHON_VERSION" $deps
- source activate test-environment
- pip install codecov mido pyfftw
install:
- pip install -e .
- pip install coveralls pytest pytest-cov
before_script:
- pep8 --ignore=E402 madmom tests bin
script:
- pytest --cov --doctest-modules --doctest-ignore-import-errors madmom tests
after_success:
- codecov
- coveralls