summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 77adf5bd30263af2c6ead32efbf5c2363ae4720a (plain)
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
dist: trusty
sudo: required
group: deprecated-2017Q2

language: python

python:
    - "2.7"

cache: pip

before_install:
  - lsb_release -a
  - sudo add-apt-repository ppa:deluge-team/develop -y
  - sudo apt-get update

# command to install dependencies
install:
  - bash -c "echo $APTPACKAGES"
  - sudo apt-get install $APTPACKAGES
  - pip install "tox==2.1.1"

env:
  global:
    - APTPACKAGES="python-libtorrent"
    - APTPACKAGES_GTKUI="python-gobject python-glade2"
    - DISPLAY=:99.0
  matrix:
    - TOX_ENV=pydef
    - TOX_ENV=flake8
#    - TOX_ENV=flake8-complexity
    - TOX_ENV=docs
#    - TOX_ENV=todo
    - TOX_ENV=trial              APTPACKAGES="$APTPACKAGES $APTPACKAGES_GTKUI"
    - TOX_ENV=pygtkui            APTPACKAGES="$APTPACKAGES $APTPACKAGES_GTKUI"
#    - TOX_ENV=testcoverage       APTPACKAGES="$APTPACKAGES $APTPACKAGES_GTKUI"
    - TOX_ENV=plugins

virtualenv:
  system_site_packages: true

# We use xvfb for the GTKUI tests
before_script:
  - export PYTHONPATH=$PYTHONPATH:$PWD
  - python -c "import libtorrent as lt; print lt.__version__"
  - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
  - echo '2.0.0.dev0' > RELEASE-VERSION

script:
  - bash -c "echo $DISPLAY"
  - tox -e $TOX_ENV