forked from gak/pycallgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (30 loc) · 878 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
language:
- python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
# pytest does not support python 3.5
# https://bitbucket.org/pytest-dev/pytest/pull-request/296/astcall-signature-changed-on-35
# - "nightly"
matrix:
allow_failures:
- python:
- "pypy"
- python:
- "nigthly"
env:
global:
# COVERALLS_REPO_TOKEN
- secure: "g94JYpTRakg5qLo8g2Q0kDX5HHPL/IfNEuYIeV29x5SHnISbwmRntudLSqRb0E2zxoKMyqo9l8UtcGd08TkV7hyanywtQygFIG9Cp2EE11Uq5CGZ7cr0G5HikRIJAQb9fFDDzGhrMUJIGuRPEJ81A9H2I2ZhNq54w3FuRi2FOO4="
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphviz
install:
- "pip install -r requirements/development.txt"
- "if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]] || [[ $TRAVIS_PYTHON_VERSION == '3.4' ]] || [[ $TRAVIS_PYTHON_VERSION == 'nightly' ]]; then make 2to3; fi"
script:
- make tests
after_success:
- coveralls