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

language: python

python:
  - "2.7"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
  - "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"