Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
the-praxs committed Oct 27, 2024
1 parent 452e93a commit b0c6713
Showing 1 changed file with 40 additions and 6 deletions.
46 changes: 40 additions & 6 deletions openbb_platform/extensions/crypto/integration/test_crypto_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,10 +624,34 @@ def test_crypto_tvl_current(params, headers):
"params",
[
{"provider": "defillama"},
{"provider": "defillama", "chain": None, "is_options": False, "all": True, "volume_type": "premium"},
{"provider": "defillama", "chain": None, "is_options": True, "all": False, "volume_type": "premium"},
{"provider": "defillama", "chain": "ethereum", "is_options": False, "all": False, "volume_type": "premium"},
{"provider": "defillama", "chain": "ethereum", "is_options": True, "all": False, "volume_type": "premium"},
{
"provider": "defillama",
"chain": None,
"is_options": False,
"all": True,
"volume_type": "premium",
},
{
"provider": "defillama",
"chain": None,
"is_options": True,
"all": False,
"volume_type": "premium",
},
{
"provider": "defillama",
"chain": "ethereum",
"is_options": False,
"all": False,
"volume_type": "premium",
},
{
"provider": "defillama",
"chain": "ethereum",
"is_options": True,
"all": False,
"volume_type": "premium",
},
{
"provider": "defillama",
"chain": "ethereum",
Expand All @@ -653,14 +677,24 @@ def test_crypto_volumes_overview(params, headers):
@parametrize(
"params",
[
{"provider": "defillama", "protocol": "uniswap", "is_options": False, "volume_type": "premium"},
{
"provider": "defillama",
"protocol": "uniswap",
"is_options": False,
"volume_type": "premium",
},
{
"provider": "defillama",
"protocol": "pancakeswap-options",
"is_options": True,
"volume_type": "premium",
},
{"provider": "defillama", "protocol": "uniswap", "is_options": False, "volume_type": "notional"},
{
"provider": "defillama",
"protocol": "uniswap",
"is_options": False,
"volume_type": "notional",
},
],
)
@pytest.mark.integration
Expand Down

0 comments on commit b0c6713

Please sign in to comment.