Skip to content

Commit

Permalink
Add python-dotenv
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvanrun committed Jan 14, 2025
1 parent 44c884e commit 5e25e0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ pydantic = "*"
pytest = "*"
pytest-randomly = "*"
pytest-cov = "*"
python-dotenv = "*"
pyyaml = "*"
datamodel-code-generator = "*"

Expand Down
4 changes: 4 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@
from tempfile import TemporaryDirectory
from time import sleep
from unittest.mock import patch
from dotenv import load_dotenv

import httpx
import pytest
import yaml

from tests.integration_tests import ADMIN_TOKEN

# Load environment variables from .env file
load_dotenv()


@pytest.fixture
def anyio_backend():
Expand Down

0 comments on commit 5e25e0d

Please sign in to comment.