2012-02-24 15:53:46 +01:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- 2.6
|
|
|
|
- 2.7
|
|
|
|
- 3.2
|
2012-12-25 06:58:56 +01:00
|
|
|
- 3.3
|
2012-07-29 12:00:04 +02:00
|
|
|
- pypy
|
2012-05-02 21:33:37 +02:00
|
|
|
before_install:
|
|
|
|
- sudo apt-get install subversion bzr mercurial
|
|
|
|
- echo -e "[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt" >> ~/.hgrc
|
2013-02-14 07:34:40 +01:00
|
|
|
- git config --global user.email "python-virtualenv@googlegroups.com"
|
|
|
|
- git config --global user.name "Pip"
|
2013-08-23 15:45:03 +02:00
|
|
|
install:
|
|
|
|
- pip install --upgrade setuptools
|
|
|
|
- pip install pytest pytest-xdist git+https://github.com/pypa/virtualenv@develop#egg=virtualenv scripttest>=1.3 mock
|
2013-08-22 12:50:14 +02:00
|
|
|
# Using -n 8because multiprocessing says a travis box has 16 CPUs (8 is half)
|
|
|
|
script: py.test -n 8
|
2012-02-24 15:53:46 +01:00
|
|
|
notifications:
|
2013-03-17 08:01:58 +01:00
|
|
|
irc: "irc.freenode.org#pip"
|
2012-02-24 15:53:46 +01:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- develop
|
2013-02-22 07:25:00 +01:00
|
|
|
- 1.3.X
|
2013-07-24 01:59:03 +02:00
|
|
|
- 1.4.X
|
2013-08-22 13:36:38 +02:00
|
|
|
env:
|
2013-08-24 13:00:44 +02:00
|
|
|
- PYTHONHASHSEED=0
|