forked from simple-salesforce/simple-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (42 loc) · 1.1 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
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
# command to install dependencies (mock & nose are already installed)
install:
- pip install tox
# command to run tests
script: tox
matrix:
fast_finish: true
allow_failures:
# pylint 1.8.2 dropped support for python 3.3
- python: "3.3"
# Python 3.2 doesn't appear to work. With 3.3 and 3.4 in the world this
# probably isn't a priority, but lets keep an eye on it anyways
- python: "3.2"
# pylint doesn't run under 2.6. this can be solved later.
- python: "2.6"
# turn off email notifications
notifications:
email: false
deploy:
# Allow travis-ci to deploy new tags to PyPI
provider: pypi
user: simple-salesforce
password:
secure: "J7qjXx9tmsjZQIyLMRK3roEV1+6GmmME34UrdomlipNixc5MELQLZP2gUThIOf3++824AGX9Dgkq0h5YyAwnawXq7QQFcsOOcz8evcE9v6nVc7EEKCOvIeZ7dXHTAk1a+nLH4I7S5t4B+2bpLI5W3AyHxdpD8TrbZ28tFtuQ2e4="
distributions: "sdist bdist_wheel"
on:
tags: true
all_branches: true
repo: simple-salesforce/simple-salesforce
env:
- TOXENV=unit
- TOXENV=static