summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4ad0593318a0bc0ee9cffdfd84d1c711a35a6f8f (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
sudo: false
language: python
# command to install dependencies
install: "pip install -U tox"
# # command to run tests
env:
  matrix:
    - TESTENV=flakes
    - TESTENV=py26
    - TESTENV=py27
    - TESTENV=py34
    - TESTENV=py35
    - TESTENV=pypy
    - TESTENV=py27-pexpect
    - TESTENV=py33-pexpect
    - TESTENV=py27-nobyte
    - TESTENV=py33
    - TESTENV=py27-xdist
    - TESTENV=py33-xdist
    - TESTENV=py27
    - TESTENV=py27-trial
    - TESTENV=py33
    - TESTENV=py33-trial
    # inprocess tests by default were introduced in 2.8 only;
    # this TESTENV should be enabled when merged back to master
    #- TESTENV=py27-subprocess
    - TESTENV=doctesting
    - TESTENV=py27-cxfreeze
    - TESTENV=coveralls
script: tox --recreate -i ALL=https://devpi.net/hpk/dev/ -e $TESTENV

notifications:
  irc:
    - "chat.freenode.net#pytest-dev"
  email:
    - pytest-commit@python.org