forked from aio-libs-abandoned/aioes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (31 loc) · 952 Bytes
/
.travis.yml
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
language: python
python:
- "3.4"
- "3.5"
sudo: false
services:
- elasticsearch
install:
- pip install -r requirements-dev.txt
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' && $PYTHONASYNCIODEBUG == '' ]]; then pip install elasticsearch codecov; fi
script:
- make test
- python setup.py check -rms
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' && $PYTHONASYNCIODEBUG == '' ]]; then python cmp.py; fi
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' && $PYTHONASYNCIODEBUG == '' ]]; then make cover; codecov; fi
cache: apt
env:
matrix:
- PYTHONASYNCIODEBUG=1
- PYTHONASYNCIODEBUG=
deploy:
provider: pypi
user: andrew.svetlov
password:
secure: DoeWNoPsOJzD9MheKAAnBiycRs6bnsro0PNmfe5Rj0N3tS0ocm6oyOOUtmLqGX41C97neremBUxTokp6lE9awmmJbTxUacOa6yleoPAr0VTphWx4vMuQSLNON8pUhjnHJbY3+1/34/BV3b4XL+jegiikh3tpeOvCVDfXh4JORRI=
distributions: "sdist bdist_wheel"
on:
tags: true
all_branches: true
python: 3.5