@@ -14,6 +14,7 @@ def symbols(request):
1414 return request .param
1515
1616
17+ @pytest .mark .xfail (reason = "Deprecated" )
1718def test_robinhood_quote (symbols ):
1819 df = RobinhoodQuoteReader (symbols = symbols ).read ()
1920 assert isinstance (df , pd .DataFrame )
@@ -22,6 +23,7 @@ def test_robinhood_quote(symbols):
2223 assert df .shape [1 ] == len (symbols )
2324
2425
26+ @pytest .mark .xfail (reason = "Deprecated" )
2527def test_robinhood_quote_too_many ():
2628 syms = np .random .randint (65 , 90 , size = (10000 , 4 )).tolist ()
2729 syms = list (map (lambda r : '' .join (map (chr , r )), syms ))
@@ -30,6 +32,7 @@ def test_robinhood_quote_too_many():
3032 RobinhoodQuoteReader (symbols = syms )
3133
3234
35+ @pytest .mark .xfail (reason = "Deprecated" )
3336def test_robinhood_historical_too_many ():
3437 syms = np .random .randint (65 , 90 , size = (10000 , 4 )).tolist ()
3538 syms = list (map (lambda r : '' .join (map (chr , r )), syms ))
@@ -40,6 +43,7 @@ def test_robinhood_historical_too_many():
4043 RobinhoodHistoricalReader (symbols = syms [:76 ])
4144
4245
46+ @pytest .mark .xfail (reason = "Deprecated" )
4347def test_robinhood_historical (symbols ):
4448 df = RobinhoodHistoricalReader (symbols = symbols ).read ()
4549 assert isinstance (df , pd .DataFrame )
0 commit comments