summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 66afedefbefa8fdf6bebea5d18fc7c566c98a724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: python
python:
  - "2.6"
  - "2.7_with_system_site_packages"
  - "3.2_with_system_site_packages"
  - "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_with_system_site_packages pygobject tornado twisted' -o
       \"$DEPS\" == '3.2_with_system_site_packages pygobject tornado twisted' -o
       \"$DEPS\" == '3.3 tornado twisted' -o
       \"$DEPS\" == 'pypy tornado twisted' ]"
  - "python setup.py test"