forked from conan-io/conan
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
36 lines (32 loc) · 821 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
os: linux
sudo: required
dist: trusty
language: python
matrix:
include:
- python: 2.7
- python: 3.4
if: branch =~ (^release.*)|(^master)
- python: 3.5
if: branch =~ (^release.*)|(^master)
- python: 3.6
- language: generic
os: osx
osx_image: xcode8.3
env: PYVER=py27
if: branch =~ (^release.*)|(^master)
- language: generic
os: osx
osx_image: xcode8.3
env: PYVER=py36
# command to install dependencies
install:
- ./.ci/travis/install.sh
before_script:
- export PYTHONPATH=$PYTHONPATH:$(pwd)
# command to run tests
script:
- ulimit -n 2048 # Error with py3 and OSX, max file descriptors
- ./.ci/travis/run.sh
after_success:
- bash <(curl -s https://codecov.io/bash)