forked from simple-salesforce/simple-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (36 loc) · 846 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
dist: bionic
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "pypy3"
# command to install dependencies (mock & nose are already installed)
install:
- pip install tox
# command to run tests
script: tox
matrix:
fast_finish: true
include:
- python: "3.8"
env: TOXENV=static
# turn off email notifications
notifications:
email: false
deploy:
# Allow travis-ci to deploy new tags to PyPI
provider: pypi
user: simple-salesforce
password:
secure: "RdkngWbRCGN5qSOk4babeda3w0jhsxB+zbuPjnFIOCHYz3OOQkIccXsoFPJso/E4k35mRNTU1J6PEBeL9W3KEtSgsl6k3lX8jamgJzkZU/HPoV8OH5tvybd3uiSikKA6EoxS5yfGjgTuSdOo07AzS69X4+FxNkRnTnug37tLjds="
distributions: "sdist bdist_wheel"
skip_existing: true
on:
tags: true
all_branches: true
repo: simple-salesforce/simple-salesforce
env:
- TOXENV=unit