forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
65 lines (56 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
60
61
62
63
64
65
sudo: false
env:
global:
- PYTHONUNBUFFERED=yes
- secure: "TyC3F7uBmd4iWLpUyhIDkpRfbhPUmRqFeFhr12VSHfzODQfeLBqB9hHMhhjVLlk1gsQwIXzNDY2X82U83d4gG0X+SEPDUpTimuWc/GJoJLQL4+uyfpS8seQWnxa7ZXkZrUdKb2owHtx+0ESzZwfOg+pd0OxoMenK9bcGo3hZtkk="
# apt-get is only available to the Ubuntu tests (os: linux)
# the other tests (os: osx) uses Homebrew to install shell
# dependencies and is done in ./utils/travis-install.sh
addons:
apt:
packages:
- zsh
- csh
- tcsh
- posh
- ksh
matrix:
include:
- python: '2.7'
os: linux
language: python
- python: '3.4'
os: linux
language: python
- python: '3.5'
os: linux
language: python
- python: '3.5'
env: FLAKE8=true
os: linux
language: python
- os: osx
env: PYTHON_VERSION=3.5
language: generic
- python: '3.5'
env: CONDA_BUILD=1.21.14
os: linux
language: python
- python: '3.5'
env: CONDA_BUILD=2.0.1
os: linux
language: python
- python: '3.5'
env: CONDA_BUILD=2.0.12
os: linux
language: python
install:
- source ./utils/travis-install.sh
script:
- source ./utils/travis-script.sh
sudo: false
after_success:
- pip install codecov coveralls scrutinizer-ocular
- codecov --env PY_VERSION
- coveralls || true
- ocular || true