-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (35 loc) · 792 Bytes
/
.travis.yml
File metadata and controls
35 lines (35 loc) · 792 Bytes
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
sudo: false
matrix:
include:
- os: osx
osx_image: xcode8.1
# See also: https://github.com/Homebrew/homebrew-core/issues/6949
- os: linux
language: python
python: pypy-5.3.1
- os: linux
language: python
python: 2.7
- os: linux
language: python
python: 3.3
- os: linux
language: python
python: 3.4
- os: linux
language: python
python: 3.5
- os: linux
language: python
python: 3.6
install:
|
if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
pip install --upgrade pip setuptools tox-travis;
elif [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
brew tap drolando/homebrew-deadsnakes;
brew install python33 python34 python35 python3 pypy
pip install --upgrade pip setuptools
pip install --user tox;
fi
script: tox