Files
polymarket-insider-tracker/tests/conftest.py
T
Patrick Selamy 8211e57b61 feat: set up Python project structure with pyproject.toml
- Add pyproject.toml with core and dev dependencies
- Configure Ruff for linting and formatting
- Configure MyPy for strict type checking
- Configure pytest with asyncio support
- Create src/polymarket_insider_tracker package structure
- Add py.typed marker for PEP 561 compliance
- Add pre-commit hooks configuration
- Add comprehensive .gitignore
- Create test directory structure with basic tests

Closes #25

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-04 14:34:37 -05:00

10 lines
201 B
Python

"""Pytest configuration and fixtures."""
import pytest
@pytest.fixture
def sample_market_id() -> str:
"""Sample market ID for testing."""
return "0x1234567890abcdef1234567890abcdef12345678"