-
Notifications
You must be signed in to change notification settings - Fork 21
/
.travis.yml
55 lines (47 loc) · 1.57 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
language: python
matrix:
include:
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
- python: "pypy3"
cache: pip
before_install:
- python --version
- uname -a
- lsb_release -a
before_install:
- "export PYTHONPATH=$PYTHONPATH:$(pwd)"
install:
- pip install tox
- pip install tox-travis
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
script:
- tox -v --workdir=/tmp/tox
- python setup.py bdist_wheel
- if [ "${TRAVIS_PYTHON_VERSION:-}" == "3.6" ]; then
python setup.py sdist;
fi
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
notifications:
email:
on_success: never
on_failure: always
deploy:
provider: releases
api_key:
secure: Cq6+zTywxa33PqdQPDQZ+wmnWEMna2JJoN4NcQ1LTn9QIvB1piEP1J1QKHheJwirI7xCJa+abhC6LyuGcrlHCBZAR0iaMo4hftWTbMt/955v3gZ1INVwGLf+VSJ9gYXNA3jIelEq7+732qedijc/LGPKZVcCPM3hk5xhGcwyi+xqlY9XpGiatwCoQSl7ZUjMYnK2DJfO7ElVZNn/xMMwygc+YIsQWtSZUX1Ft5rVnV5mWLwu3ovSny8U38Bsi6/xSKWeybf4ojAz6j7sohnslRw23tZSl2zG3FJ/WFp4WonqP2799ilW56BKyF2I5kHuFGa2gR9SnBoR914yq8X10n+23ZBMA0QXpvenGvGb8EuX26OjfB6aVTRL0RVjHtIsdZDEIYmmBv6z0YlZQIU2uomhs5QqwETy+6xtetPk8aP329UyPk5zvQPg1CgGQ2ozTvUgXoF1YTFMt1+HIg3sOFT/Gr/d6AOT0LfsA9jI/hThTe0MsoX8joHhiM7MMUlFGG67GDy35lk8a4wE8Blf8gJ+e2MDjWcypFJtVgdBsuJWxWh3exudw5gpAn1ulxFr/GAhVpfzpKlIAycuwgSNMMALM5DwDxsNwSdiJIplt06ib2I/7+1Clg88jlnyT/U/UCIYMIcWl6rBik5vAxq4Bxo0rW9rIaWRQiLceUDoCjM=
file_glob: true
file: dist/*
skip_cleanup: true
on:
tags: true
repo: scoutapp/scout_apm_python