Spaces:
Sleeping
Sleeping
File size: 791 Bytes
cc036ff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | """
Bug Discovery Test Configuration
This module imports bug filing fixtures for pytest discovery.
"""
from backend.tests.bug_discovery.fixtures.bug_filing_fixtures import (
mock_github_api,
bug_filing_service,
test_metadata,
test_metadata_network,
test_metadata_memory,
test_metadata_mobile,
test_metadata_desktop,
test_metadata_visual,
test_metadata_a11y,
artifacts_dir,
sample_screenshot_file,
sample_log_file
)
__all__ = [
"mock_github_api",
"bug_filing_service",
"test_metadata",
"test_metadata_network",
"test_metadata_memory",
"test_metadata_mobile",
"test_metadata_desktop",
"test_metadata_visual",
"test_metadata_a11y",
"artifacts_dir",
"sample_screenshot_file",
"sample_log_file"
]
|