forked from ipython/ipyparallel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (35 loc) · 789 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
# http://travis-ci.org/#!/ipython/ipyparallel
dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "nightly"
sudo: false
cache:
directories:
- $HOME/.cache/pip
install:
- pip install --upgrade setuptools pip
- pip install --pre --upgrade --upgrade-strategy eager .[test] distributed joblib codecov
- |
# install pinned tornado
if [[ ! -z "$TORNADO" ]]; then
pip install tornado==${TORNADO}
fi
- 'pip install --only-binary :all: matplotlib || echo "no matplotlib"'
- pip freeze
script:
- pytest --maxfail=3 --cov ipyparallel -vx ipyparallel/tests
after_success:
- codecov
matrix:
allow_failures:
- python: "nightly"
include:
- python: 3.6
env: TORNADO="4.5.3"
- python: 3.6
env: TORNADO="5.1.1"