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
38 lines (32 loc) · 773 Bytes
/
.travis.yml
File metadata and controls
38 lines (32 loc) · 773 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
sudo: false
os: linux
language: python
python:
- 2.7
- pypy
- 3.4
- 3.5
- 3.6
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 upgrade python
- python3 -m pip install --user virtualenv
- /Users/travis/Library/Python/3.7/bin/virtualenv $HOME/osx-py
- source $HOME/osx-py/bin/activate
- python: 2.7
env: TOXENV=stylecheck
- python: 3.6
env: TOXENV=stylecheck
install:
- pip install tox
script:
- tox