Skip to content

Commit

Permalink
Remove load_dotenv from test
Browse files Browse the repository at this point in the history
  • Loading branch information
evangriffiths committed Apr 10, 2024
1 parent f86519f commit d430f7d
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/agents/test_microchain.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import typing as t

import pytest
from dotenv import load_dotenv
from eth_typing import HexAddress, HexStr
from prediction_market_agent_tooling.markets.markets import MarketType
from prediction_market_agent_tooling.markets.omen.omen import OmenAgentMarket
Expand All @@ -28,12 +25,6 @@
AGENT_0_ADDRESS = "0x2DD9f5678484C1F59F97eD334725858b938B4102"


@pytest.fixture(scope="session", autouse=True)
def before_all_tests() -> t.Generator[None, None, None]:
load_dotenv()
yield None


# TODO investigate why this fails for polymarket https://github.com/gnosis/prediction-market-agent/issues/62
@pytest.mark.parametrize("market_type", [MarketType.OMEN, MarketType.MANIFOLD])
def test_get_markets(market_type: MarketType) -> None:
Expand Down

0 comments on commit d430f7d

Please sign in to comment.