summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 34a88099909de2a0531efd8018408d9737d445ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
virtualenv:
  system_site_packages: true
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "pypy"
before_install:
  - "sudo apt-get install python-gi python3-gi"
install:
  - "pip install --use-mirrors setuptools twisted tornado"
script:
  - "DEPS=\"$TRAVIS_PYTHON_VERSION `python bin/deps.py`\"; echo $DEPS"
  - "[ \"$DEPS\" == '2.6 tornado twisted' -o
       \"$DEPS\" == '2.7 pygobject tornado twisted' -o
       \"$DEPS\" == '3.2 pygobject tornado twisted' -o
       \"$DEPS\" == '3.3 tornado twisted' -o
       \"$DEPS\" == 'pypy tornado twisted' ]"
  - "python setup.py test"