summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8a9ef916eaf88c500c9524a91483534e382d0413 (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
# Config file for automatic testing at travis-ci.org

language: python
sudo: false

python:
  - "2.7"
  - "3.3"
  - "3.4"
  - "pypy"
  - "pypy3"

install:
  - pip install --upgrade pip
  - pip install nose textile docutils pygments coveralls
  - pip install .

script:
  - coverage run ./setup.py nosetests

after_success:
  - coveralls
  # https://github.com/codecov/codecov-bash
  - bash <(curl -s https://codecov.io/bash)
    
notifications:
  irc: "irc.freenode.org#pylucid"