File tree 2 files changed +31
-2
lines changed
2 files changed +31
-2
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,21 @@ matrix:
115
115
apt :
116
116
packages :
117
117
- xsel
118
+ # In allow_failures
119
+ - python : 3.4
120
+ env :
121
+ - JOB_NAME : " 34_slow_ascii"
122
+ - JOB_TAG=_SLOW
123
+ - NOSE_ARGS="slow and not network and not disabled"
124
+ - LOCALE_OVERRIDE="C"
125
+ - FULL_DEPS=true
126
+ - CLIPBOARD=xsel
127
+ - CACHE_NAME="34_slow_ascii"
128
+ - USE_CACHE=true
129
+ addons :
130
+ apt :
131
+ packages :
132
+ - xsel
118
133
# In allow_failures
119
134
- python : 2.7
120
135
env :
@@ -184,6 +199,20 @@ matrix:
184
199
apt :
185
200
packages :
186
201
- xsel
202
+ - python : 3.4
203
+ env :
204
+ - JOB_NAME : " 34_slow_ascii"
205
+ - JOB_TAG=_SLOW
206
+ - NOSE_ARGS="slow and not network and not disabled"
207
+ - LOCALE_OVERRIDE="C"
208
+ - FULL_DEPS=true
209
+ - CLIPBOARD=xsel
210
+ - CACHE_NAME="34_slow_ascii"
211
+ - USE_CACHE=true
212
+ addons :
213
+ apt :
214
+ packages :
215
+ - xsel
187
216
- python : 2.7
188
217
env :
189
218
- JOB_NAME : " 27_build_test_conda"
Original file line number Diff line number Diff line change @@ -2820,7 +2820,7 @@ def test_to_latex_filename(self):
2820
2820
self .assertEqual (df .to_latex (), f .read ())
2821
2821
2822
2822
# test with utf-8 without encoding option
2823
- if compat .PY3 : # python3 default encoding is utf-8
2823
+ if compat .PY3 : # python3: pandas default encoding is utf-8
2824
2824
with tm .ensure_clean ('test.tex' ) as path :
2825
2825
df .to_latex (path )
2826
2826
with codecs .open (path , 'r' ) as f :
@@ -4295,7 +4295,7 @@ def format_func(x):
4295
4295
formatter = fmt .Datetime64Formatter (x , formatter = format_func )
4296
4296
result = formatter .get_result ()
4297
4297
self .assertEqual (result , ['2016-01' , '2016-02' ])
4298
-
4298
+
4299
4299
def test_datetime64formatter_hoursecond (self ):
4300
4300
4301
4301
x = Series (pd .to_datetime (['10:10:10.100' , '12:12:12.120' ],
You can’t perform that action at this time.
0 commit comments