mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-06-06 12:13:53 +02:00
feat: FuzzForge AI - complete rewrite for OSS release
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
"""Pytest configuration for shared fixtures.
|
||||
|
||||
This conftest.py makes fixtures available to any test that imports from
|
||||
fuzzforge_tests. Test packages should add 'pytest_plugins = ["fuzzforge_tests.fixtures"]'
|
||||
to their conftest.py to use these shared fixtures.
|
||||
|
||||
"""
|
||||
|
||||
# Import fixtures to make them available
|
||||
from fuzzforge_tests.fixtures import (
|
||||
minio_container,
|
||||
random_module_execution_identifier,
|
||||
random_project_identifier,
|
||||
storage_configuration,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"minio_container",
|
||||
"random_module_execution_identifier",
|
||||
"random_project_identifier",
|
||||
"storage_configuration",
|
||||
]
|
||||
Reference in New Issue
Block a user