File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,22 @@ matrix:
5
5
- python : 2.7
6
6
env :
7
7
- COVERAGE=false
8
+ - TESTERS="conda-forge pytest mock pytest-mpl coverage"
8
9
- ARGS="--verbose"
9
10
- python : 3.4
10
11
env :
11
12
- COVERAGE=false
13
+ - TESTERS="conda-forge pytest pytest-mpl coverage"
12
14
- ARGS="--mpl --verbose"
13
15
- python : 3.5
14
16
env :
15
17
- COVERAGE=false
18
+ - TESTERS="conda-forge pytest pytest-mpl coverage"
16
19
- ARGS="--mpl --verbose"
17
20
- python : 3.5
18
21
env :
19
22
- COVERAGE=true
23
+ - TESTERS="conda-forge pytest pytest-mpl coverage"
20
24
- ARGS="--mpl --verbose"
21
25
22
26
before_install :
@@ -36,8 +40,8 @@ install:
36
40
37
41
- conda create --yes -n test python=$TRAVIS_PYTHON_VERSION
38
42
- source activate test
39
- - conda install --yes --channel=conda-forge numpy matplotlib coverage docopt requests pyyaml
40
- - conda install --yes --channel=conda-forge pytest pytest-cov pytest-mpl
43
+ - conda install --yes --channel=conda-forge numpy matplotlib docopt requests pyyaml
44
+ - conda install --yes --channel=${TESTERS}
41
45
- if [ ${COVERAGE} = true ]; then conda install scipy --yes; fi
42
46
- pip install coveralls
43
47
- pip install .
Original file line number Diff line number Diff line change 30
30
- python -c "import sys; import matplotlib as mpl; mpl.use('agg'); import probscale as ps; sys.exit(ps.test('--mpl'))"
31
31
32
32
requires :
33
+ - mock # [py27]
33
34
- pytest
34
35
- pytest-mpl
35
36
- scipy
You can’t perform that action at this time.
0 commit comments