forked from rethinkdb/rethinkdb-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (32 loc) · 733 Bytes
/
.travis.yml
File metadata and controls
41 lines (32 loc) · 733 Bytes
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
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
jobs:
include:
- sudo: required
dist: xenial
python: "3.7"
- stage: upload_coverage
python: "2.7"
script: make upload-coverage
- stage: upload_coverage
python: "3.6"
script: make upload-coverage
- stage: integration_test
if: branch = master
python: "2.7"
script: make test-remote
- stage: integration_test
if: branch = master
python: "3.6"
script: make test-remote
before_script:
- make prepare
script:
- make test-unit