-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
45 lines (44 loc) · 933 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
42
43
44
45
language: python
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: make test
jobs:
fast_finish: true
include:
- name: Python 2.7
stage: test
python: "2.7"
- name: Python 3.4
stage: test
python: "3.4"
- name: Python 3.5
stage: test
python: "3.5"
- name: Python 3.6
stage: test
python: "3.6"
- name: Python 3.7
stage: test
python: "3.7"
- name: Python 3.8
stage: test
python: "3.8"
- name: Python nightly
stage: test
python: "nightly"
- name: Python pypy
stage: test
python: "pypy"
- name: Upload Python client
stage: release
if: tag =~ ^v
language: python
python: '3.7'
script: skip
deploy:
provider: pypi
user: "__token__"
skip_existing: true
on:
tags: true