File: conftest.py

package info (click to toggle)
python-azure 20251118%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 783,356 kB
  • sloc: python: 6,474,533; ansic: 804; javascript: 287; sh: 205; makefile: 198; xml: 109
file content (10 lines) | stat: -rw-r--r-- 271 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
"""
Pytest configuration and shared fixtures for unit tests.
"""

import sys
from pathlib import Path

# Add the src directory to the Python path so we can import modules under test
src_path = Path(__file__).parent.parent.parent / "src"
sys.path.insert(0, str(src_path))