Skip to content

BUG/TST: Fix failing FRED comparison tests. #4890

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

Closed
wants to merge 27 commits into from
Closed
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
91dc84f
BUG/TST: Fix failing FRED comparison tests.
Sep 20, 2013
7b55b92
DOC: v0.13.0.txt typos
jreback Sep 16, 2013
3652a5e
CLN: _axis_len checking cleanup and better message
jreback Sep 16, 2013
41ee54c
COMPAT: unicode compat issue fix
jreback Sep 16, 2013
4104c03
TST: reproducing tests for subtle PyTables bug (disabled for now), see:
jreback Sep 17, 2013
cc302e2
DOC: show a more informative query performance plot
cpcloud Sep 17, 2013
b903689
DOC: added bitwise op disallow clarification in eval docs
cpcloud Sep 17, 2013
e692104
ENH: Better read_json error when handling bad keys
jtratner Sep 14, 2013
df9e633
BUG: fix sort_index with one col and ascending list
jtratner Sep 15, 2013
48beb8e
DOC: v0.13.0 HDFStore corrections
jreback Sep 17, 2013
4c0fbca
BLD: fix json to build on windows, @Komnomnomnom
jreback Sep 17, 2013
2df7f83
TST: dtypes tests fix for 32-bit
jreback Sep 17, 2013
8f0b4f5
BLD: json mingw doesnt have sprintf_s
Komnomnomnom Sep 15, 2013
f3a5391
TST: windows dtype 32-bit fixes
Komnomnomnom Sep 18, 2013
7ebd3b1
FIX: iso date encoding year overflow
Komnomnomnom Sep 18, 2013
4a8f20e
ENH: Add makePeriodPanel
dalejung Sep 17, 2013
f1fb8f0
BUG: (GH4853) Fixed Panel.shift/tshift to use freq.
dalejung Sep 17, 2013
4af9288
DOC: v0.13.0 adds
jreback Sep 18, 2013
f33dfbb
CLN: clean up test_graphics.py
cpcloud Sep 18, 2013
749669f
CLN: clean up tseries/tests/test_plotting.py
cpcloud Sep 18, 2013
a67fa5b
BUG: Fix for issue with PythonParser::_check_thousands. (GH4596)
cancan101 Aug 18, 2013
c051c35
BUG: bug in getitem with a duplicate index when using where (GH4879)
jreback Sep 19, 2013
ed1683f
CLN: move README.rst to markdown
cpcloud Sep 19, 2013
5f05f00
BUG: off-by-one when doing network test repeats
esc Aug 6, 2013
edbf949
BUG/TST: fix (and skip) tests that have been failing unnoticed all along
esc Aug 6, 2013
fda172d
BUG/TST: Fix failing FRED comparison tests.
Sep 20, 2013
0d68313
Merge branch 'fixfred2' of https://github.com/TomAugspurger/pandas in…
Sep 20, 2013
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
4 changes: 2 additions & 2 deletions pandas/io/tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,15 +385,15 @@ def test_fred_nan(self):
start = datetime(2010, 1, 1)
end = datetime(2013, 1, 27)
df = web.DataReader("DFII5", "fred", start, end)
assert pd.isnull(df.ix['2010-01-01'])
assert pd.isnull(df.ix['2010-01-01'][0])

@network
def test_fred_parts(self):
raise nose.SkipTest("Unstable test case - needs to be fixed.")
start = datetime(2010, 1, 1)
end = datetime(2013, 1, 27)
df = web.get_data_fred("CPIAUCSL", start, end)
self.assertEqual(df.ix['2010-05-01'], 217.23)
self.assertEqual(df.ix['2010-05-01'][0], 217.23)

t = df.CPIAUCSL.values
assert np.issubdtype(t.dtype, np.floating)
Expand Down