File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 "1-0x744d70fdbe2ba4cf95131626614a1763df805b9e" , # SNT
1010]
1111
12+ # Live CoinGecko / market.status.im — https://github.com/status-im/status-app/issues/21135
13+ _SKIP_LIVE_MARKET_RPC = pytest .mark .skip (
14+ reason = "https://github.com/status-im/status-app/issues/21135 — re-enable when market proxy puzzle auth is wired in functional tests"
15+ )
16+
1217
1318@pytest .mark .wallet
1419@pytest .mark .rpc
@@ -93,16 +98,19 @@ def test_get_cached_currency_formats(self):
9398 result = self .rpc_client .wallet_service .get_cached_currency_formats ()
9499 assert result .get ("AED" ).get ("key" ) == "AED"
95100
101+ @_SKIP_LIVE_MARKET_RPC
96102 def test_fetch_prices (self ):
97103 result = self .rpc_client .wallet_service .fetch_prices (TOKENS_KEYS , ["usd" ])
98104 for key in TOKENS_KEYS :
99105 assert key .lower () in result
100106
107+ @_SKIP_LIVE_MARKET_RPC
101108 def test_fetch_market_values (self ):
102109 result = self .rpc_client .wallet_service .fetch_market_values (TOKENS_KEYS , "usd" )
103110 for key in TOKENS_KEYS :
104111 assert key .lower () in result
105112
113+ @_SKIP_LIVE_MARKET_RPC
106114 def test_fetch_token_details (self ):
107115 result = self .rpc_client .wallet_service .fetch_token_details (TOKENS_KEYS )
108116 for key in TOKENS_KEYS :
You can’t perform that action at this time.
0 commit comments