forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (44 loc) · 1.05 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
language: python
python:
- 2.6
- 2.7
- 3.1 # travis will soon EOL this
- 3.2
- 3.3
env:
global:
- # need at least this so travis page will show env column
matrix:
include:
- python: 2.7
env: VBENCH=true
- python: 2.7
env: FULL_DEPS=true
- python: 3.2
env: FULL_DEPS=true
allow_failures:
- python: 2.7
env: VBENCH=true
- python: 3.2
env: FULL_DEPS=true
# allow importing from site-packages,
# so apt-get python-x works for system pythons
# That's 2.7/3.2 on Ubuntu 12.04
virtualenv:
system_site_packages: true
before_install:
- echo "Waldo1"
- echo $VIRTUAL_ENV
- date
- export PIP_ARGS=-q # comment this this to debug travis install issues
- export APT_ARGS=-qq # comment this to debug travis install issues
# - set -x # enable this to see bash commands
- source ci/before_install.sh # we need to source this to bring in the env
- python -V
install:
- echo "Waldo2"
- ci/install.sh
- ci/print_versions.py # not including stats
script:
- echo "Waldo3"
- ci/script.sh