-
Notifications
You must be signed in to change notification settings - Fork 21
/
.travis.yml
41 lines (39 loc) · 824 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
41
dist: xenial
language: python
python:
- "3.6"
- "3.7"
env:
- TOXENV=redis
- TOXENV=rabbitmq
cache:
- pip
addons:
apt:
packages:
- rabbitmq-server
services:
- redis-server
install: pip install -U tox codecov
script: tox
after_success: codecov
stages:
- test
- name: deploy
if: tag IS present
jobs:
fast_finish: true
include:
- stage: deploy
python: 3.7
install: true
script: true
after_success: true
deploy:
provider: pypi
user: ryanhiebert-auto
password:
secure: bRbLOOfykUfoFbKlVc5Zoe97sTfVvMZU+JdK+hp/hnQQswqjFAHn+hW+r7orPBZUxQDdEDtDR/38d3j19XRgxB2biB6vv18jBKeI/HzAfkZt274IouDgvSNdCQNJ+d8EKR6SGuHIYpfEMwLWyLPQiMk7LcpleQ2VJNb8/74mOas=
distributions: sdist bdist_wheel
on:
all_branches: true