-
Notifications
You must be signed in to change notification settings - Fork 73
/
.travis.yml
35 lines (35 loc) · 951 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
language: python
sudo: false
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
env:
- IPYTHON_INSTALL='pip install ipython' MPL_INSTALL='pip install matplotlib'
matrix:
include:
- python: "2.7"
env: >
IPYTHON_INSTALL='pip install ipython>=5,<6'
MPL_INSTALL='pip install matplotlib'
- python: "pypy"
env: >
IPYTHON_INSTALL='pip install ipython>=5,<6'
MPL_INSTALL='echo "not installing matplotlib on pypy"'
- python: "pypy3"
env: >
IPYTHON_INSTALL='pip install ipython'
MPL_INSTALL='echo "not installing matplotlib on pypy"'
install:
- pip install --upgrade pip
- $IPYTHON_INSTALL
- $MPL_INSTALL
- pip install ipythonblocks
- pip install .
- pip install pytest-cov
- pip install coveralls
script:
- py.test --cov palettable --cov-report term-missing
after_success:
- coveralls