We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb54ebf commit 833d6a3Copy full SHA for 833d6a3
pandas_datareader/tests/test_iex.py
@@ -45,4 +45,7 @@ def test_live_prices(self):
45
46
def test_deep(self):
47
dob = get_iex_book('GS', service='book')
48
- assert 'GS' in dob
+ if dob:
49
+ assert 'GS' in dob
50
+ else:
51
+ pytest.xfail(reason='Can only get Book when market open')
0 commit comments