forked from urllib3/urllib3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
56 lines (43 loc) · 1.02 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
56
language: python
os: linux
dist: focal
before_install:
- env
- openssl version
- python -c "import ssl; print(ssl.OPENSSL_VERSION)"
install:
- python3 -m pip install nox
script:
- ./ci/run.sh
- ./ci/upload_coverage.sh
cache:
directories:
- ${HOME}/.cache
notifications:
email: false
env:
global:
- PYTHONWARNINGS=always::DeprecationWarning
- PYPI_USERNAME=urllib3
# PYPI_PASSWORD is set in Travis control panel.
jobs:
# Downstream integration tests.
- python: 3.7
env: DOWNSTREAM=requests
stage: integration
- python: 3.7
env: DOWNSTREAM=botocore
stage: integration
- python: 3.7
stage: deploy
script:
- ./ci/deploy.sh
stages:
- name: test
if: tag IS blank
# Run integration tests for release candidates
- name: integration
if: type = pull_request AND head_branch =~ ^release-[\d.]+$ AND tag IS blank
# Deploy on any tags
- name: deploy
if: tag IS present AND tag =~ /^(\d+\.\d+(?:.\d+)?)$/ AND repo = urllib3/urllib3