forked from untitaker/python-atomicwrites
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (34 loc) · 740 Bytes
/
.travis.yml
File metadata and controls
40 lines (34 loc) · 740 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
36
37
38
39
40
sudo: false
os: linux
language: python
python:
- 2.6
- 2.7
- pypy
- 3.3
- 3.4
- 3.5
- 3.6
- pypy3.3-5.2-alpha1
env:
- TOXENV=test
matrix:
include:
- # The OS X VM doesn't have any Python support at all
# See https://github.com/travis-ci/travis-ci/issues/2312
os: osx
language: generic
env: TOXENV=test
before_install:
- brew update
- brew install python3
- virtualenv $HOME/osx-py3 -p python3
- source $HOME/osx-py3/bin/activate
- python: 2.7
env: TOXENV=stylecheck
- python: 3.6
env: TOXENV=stylecheck
install:
- pip install tox
script:
- tox