Release v0.1.0-alpha.3
Some checks failed
CI / Lint (push) Has been cancelled
CI / Type Check (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Release (push) Has been cancelled

This commit is contained in:
2025-06-02 22:56:53 +00:00
parent e4397a7464
commit f472001b57
4 changed files with 26 additions and 12 deletions

View File

@@ -1 +1,8 @@
"""pytest fixtures for py_dvt_ate tests."""
import pytest
def pytest_configure(config: pytest.Config) -> None:
"""Configure pytest markers."""
config.addinivalue_line("markers", "asyncio: mark test as async")

View File

@@ -1,11 +1 @@
"""Configuration for integration tests."""
import pytest
# Configure pytest-asyncio mode
pytest_plugins = ("pytest_asyncio",)
def pytest_configure(config: pytest.Config) -> None:
"""Configure pytest for async tests."""
config.addinivalue_line("markers", "asyncio: mark test as async")