forked from alexa/alexa-skills-kit-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (39 loc) · 933 Bytes
/
.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
language: python
matrix:
include:
- os: linux
name: "Python 2.7 on Linux"
python: '2.7'
env:
- TOX_ENV=py27-mylinux
- os: linux
name: "Python 3.6 on Linux"
python: '3.6'
env:
- TOX_ENV=py36-mylinux
- os: linux
name: "Python 3.7 on Xenial Linux"
python: '3.7'
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
env:
- TOX_ENV=py37-mylinux
- os: osx
name: "Python 3.6 on MacOs"
language: shell
python: '3.6'
env:
- TOX_ENV=py36-mymacos
before_install:
- set TRAVIS_PYTHON_VERSION='3.6'
- os: windows
language: sh
env:
- TOX_ENV=py37-mywin
before_install:
- choco install python3
- export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
- set TRAVIS_PYTHON_VERSION='3.6'
install:
- pip install --upgrade tox
script:
- tox -e $TOX_ENV