forked from aio-libs/aiobotocore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (37 loc) · 1.54 KB
/
Copy path.travis.yml
File metadata and controls
43 lines (37 loc) · 1.54 KB
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
42
43
language: python
# Needed for Python 3.7
dist: xenial
python:
- 3.5
- 3.6
- 3.7
matrix:
include:
- python: 3.7
env: EXTRA="awscli"
- python: 3.7
env: EXTRA="boto3"
install:
- pip install -U setuptools
- if [[ -v EXTRA ]]; then pip install pipdeptree; fi
- if ! [[ -v EXTRA ]]; then pip install -r requirements-dev.txt; fi
- pip install codecov
- pip freeze
script:
# requests from idna and docker packages conflicts with rest of the system...
- if [[ -v EXTRA ]]; then pip install -U .[$EXTRA] && pipdeptree; fi
- if ! [[ -v EXTRA ]]; then make flake mototest; fi
after_success:
codecov
deploy:
provider: pypi
user: aio-libs-bot
distributions: "sdist bdist_wheel"
password:
secure: sO1h+qa0JL3G5sImVzDfsX6W1Ilgz+I+EFXSfJ+O3vzqa4/M8qjVFuNrJafq59AkCG0LVdOC5gx1WSnsKmG+/Y92nQxzS43MhirgVEYKiBHQCNzlaH+Tha+JxP+reuDk6kB1oINnjuEldSfTMmNxYb+qL52Xvvjgk+Ho0XKzzMc/gBOshMNAZEPS9PUXg/CAyGYYsD/1VBjxCak4b9m8eegY0uRdKq9Cm2wUF2E9rWnYMlWRy0+wZHVaVysDeENF53rHtEVkQG9iuXM+uWhRu/288MpoVSKYzAcpQ16tr627NeW4VjWlC4LjLISRBC8sguapN1X7C6VIn/skoATe9yalxTuDmtqVgiYNW5kQWU07+g30+uvdWOCko7oJ4UoVoeHbnXe32z8rHAckXWu2hordC4exwTfAwd5iUSiAR95GfzFpbx0sCM8ahiEk62XzaiSP1RtSsGjtVxBjOA03EqzLCMGULbk5r7imFXw6+YaV5AYerk6fV0UNpMc5t8gfFFu6IxMc05eEMHypIEGgsKfp412+g5I33AjcpW4uyYf37RPPG/vMq4qlf9aVI8lNCFuDNqcnjeY3LxU/wbpOSmI0chdzSHS11M7F1NgeaVTGcQx4GvqBslSqRmNv0q1bdteMC2rVNkU0BGaBHKMIs97tUr2B6uFiswNdEsGorhY=
on:
tags: true
repo: aio-libs/aiobotocore
all_branches: true
python: 3.7
cache: pip