Skip to content

CLN: Use to_dataframe to download query results. #247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Feb 23, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove timezone from datetime tests.
  • Loading branch information
tswast committed Feb 15, 2019
commit 5a526c0699989a936ea4685ccc17462ed50124ed
4 changes: 2 additions & 2 deletions tests/system/test_gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def test_should_properly_handle_datetime_unix_epoch(self, project_id):
tm.assert_frame_equal(
df,
DataFrame(
{"unix_epoch": ["1970-01-01T00:00:00.000000Z"]},
{"unix_epoch": ["1970-01-01T00:00:00"]},
dtype="datetime64[ns]",
),
)
Expand All @@ -362,7 +362,7 @@ def test_should_properly_handle_arbitrary_datetime(self, project_id):
DataFrame(
{
"valid_timestamp": [
np.datetime64("2004-09-15T05:00:00.000000Z")
np.datetime64("2004-09-15T05:00:00")
]
}
),
Expand Down