Skip to content

Commit

Permalink
checkpoint skipped rfq tests
Browse files Browse the repository at this point in the history
  • Loading branch information
8ball030 committed Aug 2, 2024
1 parent 8eafa55 commit f268ef2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_rfq.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

from dataclasses import asdict, dataclass

import pytest

from lyra.enums import OrderSide

LEG_1_NAME = 'ETH-20240329-2400-C'
Expand Down Expand Up @@ -33,6 +35,7 @@ def to_dict(self):
return {"legs": [asdict(self.leg_1), asdict(self.leg_2)], "subaccount_id": self.subaccount_id}


@pytest.mark.skip(reason="This test is not meant to be run in CI")
def test_lyra_client_create_rfq(
lyra_client,
):
Expand All @@ -47,6 +50,7 @@ def test_lyra_client_create_rfq(
assert lyra_client.send_rfq(rfq.to_dict())


@pytest.mark.skip(reason="This test is not meant to be run in CI")
def test_lyra_client_create_quote(
lyra_client,
):
Expand All @@ -68,9 +72,9 @@ def test_lyra_client_create_quote(
)
# we now sign it
assert lyra_client._sign_quote(quote)
breakpoint()


@pytest.mark.skip(reason="This test is not meant to be run in CI")
def test_poll_rfqs(lyra_client):
"""
Test the LyraClient class.
Expand Down

0 comments on commit f268ef2

Please sign in to comment.