forked from interactive-sonification/pya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (54 loc) · 1.34 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
53
54
55
56
57
58
59
language: generic
branches:
only:
- master
- develop
- dev-travis
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-$TRAVIS_OS-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- source "$HOME/miniconda/etc/profile.d/conda.sh"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda config --append channels conda-forge
- conda create -q -n test-environment python=$PYTHON_VERSION ffmpeg coverage python-coveralls --file=requirements.txt --file=requirements_remote.txt --file=requirements_test.txt
- conda activate test-environment
- pytest --version
script: pytest --cov pya/
after_success:
- coveralls --config_file .coveragerc
env:
global:
AUDIODEV=null
matrix:
include:
- os: linux
python: 3.7
addons:
apt:
packages:
- portaudio19-dev
env:
- TRAVIS_OS=Linux
- PYTHON_VERSION=3.7
- os: linux
python: 3.8
addons:
apt:
packages:
- portaudio19-dev
env:
- TRAVIS_OS=Linux
- PYTHON_VERSION=3.8
- os: osx
python: 3.7
env:
- TRAVIS_OS=MacOSX
- PYTHON_VERSION=3.7
- os: osx
python: 3.8
env:
- TRAVIS_OS=MacOSX
- PYTHON_VERSION=3.8