forked from simple-salesforce/simple-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (37 loc) · 870 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
os: linux
dist: bionic
language: python
python:
- "3.6"
- "3.7"
- "3.8"
jobs:
fast_finish: true
include:
- python: "3.8"
env: TOXENV=static
env:
- TOXENV=unit
before_install:
- python -m pip install --upgrade virtualenv
install:
- pip install -U tox
- pip install --force-reinstall setuptools==59.5.0
script: tox
notifications:
email: false
deploy:
# Allow travis-ci to deploy new tags to PyPI
provider: pypi
edge:
branch: v1.8.45
username: simple-salesforce
password:
secure: "RdkngWbRCGN5qSOk4babeda3w0jhsxB+zbuPjnFIOCHYz3OOQkIccXsoFPJso/E4k35mRNTU1J6PEBeL9W3KEtSgsl6k3lX8jamgJzkZU/HPoV8OH5tvybd3uiSikKA6EoxS5yfGjgTuSdOo07AzS69X4+FxNkRnTnug37tLjds="
distributions: "sdist bdist_wheel"
skip_existing: true
skip_cleanup: true
on:
tags: true
all_branches: true
repo: simple-salesforce/simple-salesforce