summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7ff32e916dc5dae341e39aa872817c9178e07282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
sudo: false
language: python
python:
- 2.7
- 3.5
script:
- pip install -U pytest
- python setup.py test
deploy:
  provider: pypi
  on:
    tags: true
    all_branches: true
  user: jaraco
  # supply password with `travis encrypt --add deploy.password`
  distributions: release
  python: 3.5