Skip to content

Commit 5f8d8d3

Browse files
TST: also skip datetime_NaT tests for sqlite3
- tests were failing on some combination of platform/version, see #7100, so skip for now until real solution is implemented
1 parent 1533480 commit 5f8d8d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/io/tests/test_sql.py

+2
Original file line numberDiff line numberDiff line change
@@ -902,6 +902,8 @@ def test_datetime_NaT(self):
902902
raise nose.SkipTest('writing datetime not working with pymysql')
903903
if self.driver == 'psycopg2':
904904
raise nose.SkipTest('writing datetime NaT not working with psycopg2')
905+
if self.flavor == 'sqlite':
906+
raise nose.SkipTest('reading datetime NaT not working with sqlite')
905907

906908
df = DataFrame({'A': date_range('2013-01-01 09:00:00', periods=3),
907909
'B': np.arange(3.0)})

0 commit comments

Comments
 (0)