This repository has been archived by the owner on Nov 14, 2018. It is now read-only.
forked from pex-tool/pex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
79 lines (61 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines".
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
# The pypy test shard fails with "too many open files" under Trusty so we pin to Precise.
dist: precise
# TRAVIS_PYTHON_VERSION
env:
global:
# This is necessary to have consistent testing of methods that rely on falling back to PATH for
# selecting a python interpreter.
- PATH=/home/travis/build/parsely/manypex/.tox/py36/bin:/home/travis/build/parsely/manypex/.tox/py27/bin
cache:
directories:
- .pyenv_test
matrix:
include:
- language: python
python: "2.7"
env: TOXENV=style
- language: python
python: "2.7"
env: TOXENV=isort-check
- language: python
python: "2.7"
env: TOXENV=py27
- language: python
python: "2.7"
env: TOXENV=py27-subprocess
- language: python
python: "2.7"
env: TOXENV=py27-requests
- language: python
python: "2.7"
env: TOXENV=py27-requests-cachecontrol
- language: python
python: "3.3"
env: TOXENV=py33
- language: python
python: "3.4"
env: TOXENV=py34
- language: python
python: "3.5"
env: TOXENV=py35
- language: python
python: "3.6"
env: TOXENV=py36
- language: python
python: "3.6"
env: TOXENV=py36-requests
- language: python
python: "3.6"
env: TOXENV=py36-requests-cachecontrol
- language: python
python: "pypy"
env: TOXENV=pypy
install:
- pip install -U tox
script:
- tox -v