-
Notifications
You must be signed in to change notification settings - Fork 29
/
.travis.yml
49 lines (45 loc) · 841 Bytes
/
.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
notifications:
email: false
language: python
sudo: false
install:
- pip install tox
matrix:
include:
- os: linux
python: "2.7"
env: TOX_ENV=py27
- os: linux
python: "3.6"
env: TOX_ENV=py36
- os: osx
python: "2.7"
language: generic
before_install:
- brew update
# Python 2.7 is already installed
- brew install fftw
- virtualenv env -p python
- source env/bin/activate
env: TOX_ENV=py27
- os: osx
python: "3.6"
language: generic
before_install:
- brew update
- brew install python3 fftw
- virtualenv env -p python3
- source env/bin/activate
env: TOX_ENV=py36
- python: "3.6"
env: TOX_ENV=flake8
script:
- tox -e $TOX_ENV
branches:
only:
- master
- develop
addons:
apt:
packages:
- libfftw3-dev