We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1533480 commit 5f8d8d3Copy full SHA for 5f8d8d3
pandas/io/tests/test_sql.py
@@ -902,6 +902,8 @@ def test_datetime_NaT(self):
902
raise nose.SkipTest('writing datetime not working with pymysql')
903
if self.driver == 'psycopg2':
904
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')
907
908
df = DataFrame({'A': date_range('2013-01-01 09:00:00', periods=3),
909
'B': np.arange(3.0)})
0 commit comments