forked from miyakogi/pyppeteer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (27 loc) · 755 Bytes
/
.travis.yml
File metadata and controls
33 lines (27 loc) · 755 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
# Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
sudo: required
dist: trusty
language: python
matrix:
include:
- os: linux
python: "3.5"
env: TOXENV="py35"
- os: linux
python: "3.6"
env: TOXENV="py36"
- os: linux
python: "3.7-dev"
env: TOXENV="py37,doit,codecov"
- os: osx
language: generic
env: TOXENV="py37"
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y enchant; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew upgrade python; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then python3 --version; fi
install:
- python3 -m pip install tox
script:
- python3 -m tox