summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 60801709ffcd5d051deef824db1d2c8f1b151bfc (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
sudo: false
language: python
python:
    - 'nightly'
# command to install dependencies
install: "pip install -U tox"
# # command to run tests
env:
  matrix:
    - TESTENV=flakes
    - TESTENV=py26
    - TESTENV=py27
    - TESTENV=py33
    - TESTENV=py34
    - TESTENV=py35
    - TESTENV=pypy
    - TESTENV=py27-pexpect
    - TESTENV=py34-pexpect
    - TESTENV=py27-nobyte
    - TESTENV=py27-xdist
    - TESTENV=py34-xdist
    - TESTENV=py27-trial
    - TESTENV=py34-trial
    - TESTENV=py27-subprocess
    - TESTENV=doctesting
    - TESTENV=py27-cxfreeze
    - TESTENV=coveralls
  allow_failures:
    - TESTENV=py35
script: tox --recreate -i ALL=https://devpi.net/hpk/dev/ -e $TESTENV

notifications:
  irc:
    channels:
      - "chat.freenode.net#pytest"
    on_success: change
    on_failure: change
    skip_join: true
  email:
    - pytest-commit@python.org