feat: FuzzForge AI - complete rewrite for OSS release

This commit is contained in:
AFredefon
2026-01-30 09:57:48 +01:00
commit b46f050aef
226 changed files with 12943 additions and 0 deletions
@@ -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",
]