forked from mozilla/mozdownload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (41 loc) · 1.12 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
sudo: false
cache:
directories:
- $HOME/.cache/pip
language: python
matrix:
include:
- name: "Run test suite on Linux with Python 2.7"
os: linux
python: 2.7
env: TOXENV=py27
- name: "Run test suite on Linux with Python 3.6"
os: linux
python: 3.6
env: TOXENV=py36
- name: "Check code style with pylama on Linux - Python 3.6"
os: linux
python: 3.6
env: TOXENV=pylama
# 10.1 is OS X 10.13.x
# https://docs.travis-ci.com/user/languages/objective-c/#Supported-OS-X-iOS-SDK-versions
- name: "Run test suite on OS X with Python 2.7"
os: osx
osx_image: xcode10.1
language: generic
python: 2.7
env: TOXENV=py27
- name: "Run test suite on OS X with Python 3.6"
os: osx
osx_image: xcode9.4
language: generic
env: TOXENV=py36
install:
- ./.travis/install.sh
script:
- tox
notifications:
email:
irc:
- "irc.mozilla.org#automation"