File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,15 @@ language: python
34
34
matrix :
35
35
include :
36
36
- python : 2.6
37
- env : NUMPY=numpy==1.6
37
+ env : NUMPY=numpy==1.6 MOCK=true
38
38
- python : 2.7
39
+ env : MOCK=true
39
40
- python : 3.3
40
41
- python : 3.4
41
42
- python : 2.7
42
43
env : TEST_ARGS=--pep8
43
44
- python : 2.7
44
- env : BUILD_DOCS=true
45
+ env : BUILD_DOCS=true MOCK=true
45
46
- python : " nightly"
46
47
env : PRE=--pre
47
48
allow_failures :
@@ -63,6 +64,12 @@ install:
63
64
# Always install from pypi
64
65
- pip install $PRE nose pep8
65
66
67
+ # Install mock on python 2. We limit to 1.0.1 at the moment
68
+ # https://github.com/matplotlib/matplotlib/issues/4613
69
+ - |
70
+ if [[ $MOCK == true ]]; then
71
+ pip install mock==1.0.1
72
+ fi;
66
73
# We manually install humor sans using the package from Ubuntu 14.10. Unfortunatly humor sans is not
67
74
# availible in the Ubuntu version used by Travis but we can manually install the deb from a later
68
75
# version since is it basically just a .ttf file
You can’t perform that action at this time.
0 commit comments