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