.travis.yml 469 Bytes
Newer Older
1
language: python
2
env:
3
    - PYTHON_VER=2.6
4 5
    - PYTHON_VER=2.7
    - PYTHON_VER=3.2
6
    - PYTHON_VER=3.3
7
    - PYTHON_VER=3.4
8

9 10 11
sudo: false
cache:
  directories:
12
  - pythons
Reinout van Rees's avatar
Reinout van Rees committed
13 14
# Note on this cache directories: "make build" downloads pythons elsewhere,
# but installs the compiled bin/lib/share in pythons/pythonx.y/ .
15

16 17
notifications:
  email:
18
    - buildout-development@googlegroups.com
19

Hanno Schlichting's avatar
Hanno Schlichting committed
20
install:
Reinout van Rees's avatar
tweak  
Reinout van Rees committed
21
    - ls -al pythons
22
    - deactivate
23
    - make build
Hanno Schlichting's avatar
Hanno Schlichting committed
24

25
script: make test