{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "QUAL003", "name": "Magic number used as default arg", "shortDescription": {"text": "Magic number used as default arg"}, "fullDescription": {"text": "Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern.\n\nAuto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "TEST002", "name": "Function is stub-only (pass/raise NotImplementedError)", "shortDescription": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "fullDescription": {"text": "Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"scanner": "repobility", "category": "test_quality", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CONC002", "name": "Concurrency \u2014 TOCTOU race via os.path.exists+open", "shortDescription": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "fullDescription": {"text": "if os.path.exists(p): open(p) \u2014 file can be replaced/deleted between check and use."}, "properties": {"scanner": "repobility", "category": "race_condition", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CRYP001", "name": "Crypto \u2014 plaintext HTTP for sensitive endpoint", "shortDescription": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "fullDescription": {"text": "Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"scanner": "repobility", "category": "crypto", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "DKR001", "name": "Docker final stage has no non-root USER", "shortDescription": {"text": "Docker final stage has no non-root USER"}, "fullDescription": {"text": "Docker images run as root unless the image or Dockerfile switches to a non-root user."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "DKR003", "name": "Dockerfile base image uses the latest tag", "shortDescription": {"text": "Dockerfile base image uses the latest tag"}, "fullDescription": {"text": "The latest tag is mutable and can change without a code review, producing different images from the same source."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.94, "cwe": "", "owasp": ""}}, {"id": "DKR007", "name": "Docker build context has no .dockerignore", "shortDescription": {"text": "Docker build context has no .dockerignore"}, "fullDescription": {"text": "Without .dockerignore, build context can include source history, local env files, dependencies, and generated artifacts."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "SEC005", "name": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.", "shortDescription": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "fullDescription": {"text": "Use subprocess with shell=False and a list of args. Never eval user input."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "ERR001", "name": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG ", "shortDescription": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "fullDescription": {"text": "Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC012", "name": "[SEC012] ZipSlip \u2014 Archive Path Traversal: Archive extraction without path validation allows writing files outside the t", "shortDescription": {"text": "[SEC012] ZipSlip \u2014 Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory."}, "fullDescription": {"text": "Validate extracted paths with os.path.realpath() and ensure they stay within the target directory."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "CORE_LARGE_FILES", "name": "Average file size is 507 lines (recommend <300)", "shortDescription": {"text": "Average file size is 507 lines (recommend <300)"}, "fullDescription": {"text": "Refactor large files by extracting related functions into separate modules. Target files with 300+ lines first. Use the Single Responsibility Principle \u2014 each module should have one clear purpose."}, "properties": {"scanner": "repobility-core", "category": "quality", "severity": "medium", "confidence": null, "cwe": "", "owasp": ""}}, {"id": "QUAL005", "name": "Cluster of TODOs in one file", "shortDescription": {"text": "Cluster of TODOs in one file"}, "fullDescription": {"text": "Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolved."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "low", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "DKR011", "name": "Dockerfile installs recommended OS packages", "shortDescription": {"text": "Dockerfile installs recommended OS packages"}, "fullDescription": {"text": "Installing recommended packages often pulls in unnecessary runtime surface area."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR002", "name": "Dockerfile base image is selected through a build variable", "shortDescription": {"text": "Dockerfile base image is selected through a build variable"}, "fullDescription": {"text": "Variable-selected base images can be safe, but Repobility cannot verify that the resolved image is pinned."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "info", "confidence": 0.48, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequen", "shortDescription": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "QUAL006", "name": "Floats used for monetary values", "shortDescription": {"text": "Floats used for monetary values"}, "fullDescription": {"text": "Variable named price/amount/cost typed as float instead of Decimal."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "TEST001", "name": "Phantom test coverage \u2014 test files without real assertions", "shortDescription": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "fullDescription": {"text": "Test function that runs code but contains no assert/expect/should \u2014 passes regardless of behaviour."}, "properties": {"scanner": "repobility", "category": "test_quality", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "ERRH003", "name": "except BaseException \u2014 catches SystemExit/KeyboardInterrupt", "shortDescription": {"text": "except BaseException \u2014 catches SystemExit/KeyboardInterrupt"}, "fullDescription": {"text": "except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "properties": {"scanner": "repobility", "category": "error_handling", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "ERRH001", "name": "Bare except: pass \u2014 silent failure", "shortDescription": {"text": "Bare except: pass \u2014 silent failure"}, "fullDescription": {"text": "except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"scanner": "repobility", "category": "error_handling", "severity": "high", "confidence": 0.45, "cwe": "", "owasp": ""}}, {"id": "PATH001", "name": "Path traversal \u2014 user input in os.path.join", "shortDescription": {"text": "Path traversal \u2014 user input in os.path.join"}, "fullDescription": {"text": "os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape."}, "properties": {"scanner": "repobility", "category": "path_traversal", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/329"}, "properties": {"repository": "NVIDIA/warp", "repoUrl": "https://github.com/NVIDIA/warp", "branch": "main"}, "results": [{"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21896, "scanner": "repobility", "fingerprint": "4b037b5149c9b0f0218a351fb52bcbbb", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 32", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/atomics.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21895, "scanner": "repobility", "fingerprint": "042b08712e00ce7db67807a1076da8ad", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 16", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/types.py"}, "region": {"startLine": 4903}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21894, "scanner": "repobility", "fingerprint": "a064f83facf19b0f7cf7b1646d931623", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 1.0", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/__init__.pyi"}, "region": {"startLine": 6116}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21893, "scanner": "repobility", "fingerprint": "2f9516a958eb2ed467d218ac25353b2c", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 1.0", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/__init__.pyi"}, "region": {"startLine": 6115}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21892, "scanner": "repobility", "fingerprint": "7997f620b2b391c4c4241d4c874025a0", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 1.0", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/__init__.pyi"}, "region": {"startLine": 6082}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21891, "scanner": "repobility", "fingerprint": "3c23ae85784ead14ce229be2bd0e732e", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 0.5", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/__init__.pyi"}, "region": {"startLine": 4317}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21890, "scanner": "repobility", "fingerprint": "3032b6b0665ce362d4cc2d859f554862", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 2.0", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/__init__.pyi"}, "region": {"startLine": 4316}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21889, "scanner": "repobility", "fingerprint": "e4cb8c4d31419365607378019fbb2df5", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "default 1", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/__init__.pyi"}, "region": {"startLine": 4297}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21379, "scanner": "repobility", "fingerprint": "5d67bf342423ca35a964ad0febd480e4", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def teardown(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/compile_cholesky.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21378, "scanner": "repobility", "fingerprint": "af8e77b95779a4650f7cc33b58e6891e", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def teardown(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/compile_gemm.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21377, "scanner": "repobility", "fingerprint": "4239fbb6d5093c77836dc01229d0046d", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def teardown(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/compile_fft.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21376, "scanner": "repobility", "fingerprint": "da976191717c2ea1e514a36222f46d9a", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __call__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/generate_reference.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21375, "scanner": "repobility", "fingerprint": "484d617fe2aec5b50a462aac2a950a3a", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __init__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/generate_reference.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21374, "scanner": "repobility", "fingerprint": "2ed6e39a723b85252aa071a6a038e746", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def print_method_name(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/fem/utils.py"}, "region": {"startLine": 315}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21373, "scanner": "repobility", "fingerprint": "51d68d2fb85e301eedfe0cc5dfe5b8fe", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def simple_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_paddle.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21372, "scanner": "repobility", "fingerprint": "af0a71cdbf3f2a52a54bc4e82371d3c2", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def simple_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_torch.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21371, "scanner": "repobility", "fingerprint": "2fe6193da64bc0e431f86ad2681ffff3", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def fill_eval_arg(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/field/virtual.py"}, "region": {"startLine": 515}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21370, "scanner": "repobility", "fingerprint": "2d50588d73764e220e4f7d4ed60a5684", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def fill_cell_arg(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/geometry/partition.py"}, "region": {"startLine": 166}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21369, "scanner": "repobility", "fingerprint": "5f56a464909cee766be2e1a7869a8d07", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def node_type_and_index(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/shape/triangle_shape_function.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21368, "scanner": "repobility", "fingerprint": "d1cc46d1e84b9f28d3ddb319c352b74c", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def node_type_and_index(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/shape/tet_shape_function.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21367, "scanner": "repobility", "fingerprint": "5afd69eef7a424a77e903a50769066e5", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def name(...): raise NotImplementedError", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/function_space.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21366, "scanner": "repobility", "fingerprint": "62c9137a7c5abc979a50173c56bbc66a", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def fill_partition_arg(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/partition.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21365, "scanner": "repobility", "fingerprint": "b15167f0c5368d9b22b26bfdc494e914", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _get_test_arg(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/integrate.py"}, "region": {"startLine": 477}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21364, "scanner": "repobility", "fingerprint": "85ade86ccdde6eb163781d7b4f1a573a", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _get_trial_arg(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/integrate.py"}, "region": {"startLine": 473}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21363, "scanner": "repobility", "fingerprint": "7c1d915e5278275c99b815f0be30c554", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _cell_to_element_coords(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/operator.py"}, "region": {"startLine": 239}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21362, "scanner": "repobility", "fingerprint": "cc318e5de36901163a1643d4b0a151fe", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _outer_cell_coords(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/operator.py"}, "region": {"startLine": 234}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21361, "scanner": "repobility", "fingerprint": "795c27c907e2bea296dc7c0bd2c77a04", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _inner_cell_coords(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/operator.py"}, "region": {"startLine": 229}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21360, "scanner": "repobility", "fingerprint": "0617560caf4ec3c3fbd304e9ac558b68", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _outer_cell_index(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/operator.py"}, "region": {"startLine": 224}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21359, "scanner": "repobility", "fingerprint": "b293044ab6d6d3f61702a79e83614774", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _inner_cell_index(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/operator.py"}, "region": {"startLine": 219}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21358, "scanner": "repobility", "fingerprint": "2002e02ad274d8191bac68ca03057033", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def printErrors(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/unittest_parallel.py"}, "region": {"startLine": 663}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21357, "scanner": "repobility", "fingerprint": "59482da637f110372708d99e2072076f", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_scope_end(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/tape.py"}, "region": {"startLine": 402}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21356, "scanner": "repobility", "fingerprint": "576f91ea7660afe92be81bd6877e1419", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_scope_begin(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/tape.py"}, "region": {"startLine": 399}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21355, "scanner": "repobility", "fingerprint": "9905c1dd39cbc72b277fc6bcbb0c6b85", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_edge_array_array(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/tape.py"}, "region": {"startLine": 396}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21354, "scanner": "repobility", "fingerprint": "219ebb108c17bbec509621e88703f749", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_edge_kernel_array(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/tape.py"}, "region": {"startLine": 393}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21353, "scanner": "repobility", "fingerprint": "3f73814f8dbdf6fe5a8ded86b7e575f4", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_edge_array_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/tape.py"}, "region": {"startLine": 390}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21352, "scanner": "repobility", "fingerprint": "87f96fa7e11761f456aff479fd31d08d", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_kernel_launch_node(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/tape.py"}, "region": {"startLine": 385}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21351, "scanner": "repobility", "fingerprint": "63bee22c51d0e566a7397b1b38396c04", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_array_node(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/tape.py"}, "region": {"startLine": 382}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21350, "scanner": "repobility", "fingerprint": "ae43be4f0b603d9c245ac3c0e788a4b0", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __init__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/types.py"}, "region": {"startLine": 2133}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21349, "scanner": "repobility", "fingerprint": "d113da7139a17586788974daec0bd783", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __init__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/types.py"}, "region": {"startLine": 1998}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21348, "scanner": "repobility", "fingerprint": "c4e9eae8a5f9822e340665b876963c3c", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def __init__(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/types.py"}, "region": {"startLine": 1502}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21347, "scanner": "repobility", "fingerprint": "df453eca6844468f077b41f50d21e8eb", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def emit_Pass(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/codegen.py"}, "region": {"startLine": 3711}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21346, "scanner": "repobility", "fingerprint": "c848343339119cab4ab0623ab778e621", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def k(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 1253}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21345, "scanner": "repobility", "fingerprint": "8e50f28439f022d3ecfc056d8378f99a", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def make_vec3_named(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 297}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21344, "scanner": "repobility", "fingerprint": "d14cf01167b506b0b80eec08ff51e0be", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def make_vec3_generic(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 294}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21343, "scanner": "repobility", "fingerprint": "d0ef2f55f57b5831fb6e9894464cbe40", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def square(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 264}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21342, "scanner": "repobility", "fingerprint": "5fd9a45886fd4cbae2954e47595aeb4f", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def square(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 260}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21341, "scanner": "repobility", "fingerprint": "f6e363e1d3774b34968aabf5d7cc0b6f", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def increment_snippet(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 237}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21340, "scanner": "repobility", "fingerprint": "3c9e85a2933c7d6eb6db257ec3884243", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def increment_snippet(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 211}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21339, "scanner": "repobility", "fingerprint": "d283b35b088b3177b91f17e87df0c11a", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def square(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 187}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21338, "scanner": "repobility", "fingerprint": "54dfab2aafef340f5d5062175cdd515b", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def reversible_increment(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 151}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21337, "scanner": "repobility", "fingerprint": "b7ea30a9319cb11bf997de7d676585ff", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def increment_snippet(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 116}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21336, "scanner": "repobility", "fingerprint": "11b9de7467ab7bfc1c62666ea2fc5f87", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def saxpy(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21335, "scanner": "repobility", "fingerprint": "92f2e2e14452bb75bc0a3bf2d7033a62", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def printErrors(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/unittest_utils.py"}, "region": {"startLine": 459}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21334, "scanner": "repobility", "fingerprint": "6a93efa0dc7174b14f90677919721c51", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _named_mod_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 247}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21333, "scanner": "repobility", "fingerprint": "ffd3a8d588c0a9fd70b44626f9ecbbb1", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _bad_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 236}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21332, "scanner": "repobility", "fingerprint": "2b79d29fca64901c3fb863a2bac70b20", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _typo_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 225}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21331, "scanner": "repobility", "fingerprint": "15b6432d4468b89459d18a67d3fae61f", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _no_warn_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 205}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21330, "scanner": "repobility", "fingerprint": "cb108dcc68e2f8e0cbc899982a765899", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _bad_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 195}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21329, "scanner": "repobility", "fingerprint": "d152b99d044ed95bd66a60d72827832b", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _empty_opts_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 185}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21328, "scanner": "repobility", "fingerprint": "6e82b3d84bde9a8f078a8af4712a0673", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _bad_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 174}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21327, "scanner": "repobility", "fingerprint": "7c5d0bd271f8e7f41f4ae04662d11677", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def _multi_opts_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unique_module.py"}, "region": {"startLine": 214}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21326, "scanner": "repobility", "fingerprint": "a0da7a023804769ce51ef1fe0a711d9c", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def user_func_return_none(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 244}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21325, "scanner": "repobility", "fingerprint": "a673641d40094c0b6803b5c501e8716f", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def empty_function(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_map.py"}, "region": {"startLine": 314}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21324, "scanner": "repobility", "fingerprint": "3d99db958515e76a8b03def5b8725a27", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def generic_transform(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 291}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21323, "scanner": "repobility", "fingerprint": "bed8962ce852b903b2d3804f37002ad7", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def generic_transform(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 286}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21322, "scanner": "repobility", "fingerprint": "b92293e7ae46c9aa8dc3805348ffb1a7", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def generic_transform(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 281}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21321, "scanner": "repobility", "fingerprint": "a4ee55e0144eeabb46ec5e5b6abc2fb1", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def generic_transform(...): ...", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 276}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21320, "scanner": "repobility", "fingerprint": "8b24986ef806fcbbba98671f110109e3", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def launch_kernel(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 218}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21319, "scanner": "repobility", "fingerprint": "676de3dea7707a78989f9f21420ef481", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def function_with_no_return_value(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_static.py"}, "region": {"startLine": 206}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21318, "scanner": "repobility", "fingerprint": "25702cd499b7b04f0b7fe264172f071d", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def compute(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_future_annotations.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21317, "scanner": "repobility", "fingerprint": "d530bfe6dc783fa5800357b34187951c", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def noop(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 570}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21316, "scanner": "repobility", "fingerprint": "d90f72a41a8e5d242f35d72359904fb2", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def k(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/aux_test_module_unload.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "TEST002", "level": "warning", "message": {"text": "Function is stub-only (pass/raise NotImplementedError)"}, "properties": {"repobilityId": 21315, "scanner": "repobility", "fingerprint": "4819a4c492fd563df868e24b930e2c02", "category": "test_quality", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "def kernel_2d(...): pass", "aljefra_cwe": ["CWE-1188"], "aljefra_owasp": null, "aljefra_pattern_slug": "stub-only-function"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_subscript_types.py"}, "region": {"startLine": 218}}}]}, {"ruleId": "CONC002", "level": "warning", "message": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "properties": {"repobilityId": 16270, "scanner": "repobility", "fingerprint": "dc31f4d65c387a2ab62c8539887d6acd", "category": "race_condition", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "if os.path.exists(path):\n        with open(", "aljefra_cwe": ["CWE-367"], "aljefra_owasp": null, "aljefra_pattern_slug": "toctou-os-path-exists"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/build.py"}, "region": {"startLine": 289}}}]}, {"ruleId": "CONC002", "level": "warning", "message": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "properties": {"repobilityId": 16269, "scanner": "repobility", "fingerprint": "ae1aac44e51000be3ff7e8a96a613d66", "category": "race_condition", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "if os.path.exists(path):\n        with open(", "aljefra_cwe": ["CWE-367"], "aljefra_owasp": null, "aljefra_pattern_slug": "toctou-os-path-exists"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/build.py"}, "region": {"startLine": 280}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13905, "scanner": "repobility", "fingerprint": "59082f6c06be91670cbb8ad28a6117e5", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/sparse/matrix_matrix.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13904, "scanner": "repobility", "fingerprint": "ffc06755218d44d7cdd903d12b3ae962", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/sparse/matrix_vector.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13903, "scanner": "repobility", "fingerprint": "fed7aae06bf2e5c1340711d6780d81f8", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/fem/integrate.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13902, "scanner": "repobility", "fingerprint": "ffbf7efb1e8346eadd57ba7f48d7a358", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/codegen/mat22_augassign.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13901, "scanner": "repobility", "fingerprint": "a101840bb8bd901189af032e7814ace3", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/codegen/mat44_assignment.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13900, "scanner": "repobility", "fingerprint": "8c893aedbe0c73b8c583e767bd0928d6", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/codegen/array2d_augassign.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13899, "scanner": "repobility", "fingerprint": "e3949e2b18219bd6a47b4f5858e9b3e9", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/api/launch.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13898, "scanner": "repobility", "fingerprint": "628ee2064299697101f563a7bb0c5af5", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/api/struct.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13897, "scanner": "repobility", "fingerprint": "f99aa4eae1fccb4217482f0a690e1944", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/api/array.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13896, "scanner": "repobility", "fingerprint": "b1ad7a6f2e57d7f3b6f74a7b52d0c799", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/api/python_builtins.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13895, "scanner": "repobility", "fingerprint": "1dab2e2125ea6815eaea92cfbde2c464", "category": "crypto", "severity": "medium", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: documentation/example path]", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/examples/mesh_intersect.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13894, "scanner": "repobility", "fingerprint": "9c3d355039b91b631dc3d10fdc9e65e3", "category": "crypto", "severity": "medium", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: documentation/example path]", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/examples/cloth.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13893, "scanner": "repobility", "fingerprint": "5cb63bb1439cb762531c6019511cdcee", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/compile_cholesky.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13892, "scanner": "repobility", "fingerprint": "b0684bfe7bc8b010ff37f94c9b967582", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/bounds_check.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13891, "scanner": "repobility", "fingerprint": "d62e545b56f03022b946f1c5986213cf", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/gemm.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13890, "scanner": "repobility", "fingerprint": "5f3128ccff88a895ba581c0ecbbf8b91", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/compile_gemm.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13889, "scanner": "repobility", "fingerprint": "ff6e408c6b0501cfa404155a227d3a20", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/array_sum.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13888, "scanner": "repobility", "fingerprint": "fca78c561cf8498993616f094dab90fd", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/tile_nbody.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13887, "scanner": "repobility", "fingerprint": "2e2077b6d4ab33065da0c7bc7e7f8af6", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/compile_fft.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13886, "scanner": "repobility", "fingerprint": "0cb9d6ff00cc0db3d73a86b21aec9a15", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/shared_load_store_nd.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13885, "scanner": "repobility", "fingerprint": "057b1b18ecc024776f19fc626c3aed44", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/tile/load_store.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13884, "scanner": "repobility", "fingerprint": "4afe974e8eb295c993ffd3c977280801", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/memory_access.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13883, "scanner": "repobility", "fingerprint": "5da626ff0486483f6ead9b04c0ee9db1", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/benchmarks_utils.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13882, "scanner": "repobility", "fingerprint": "f621f86ede0adfef572c6d0cc8b94d8b", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/spatial_query.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13881, "scanner": "repobility", "fingerprint": "570624ede2f1f76af7e9fe62921b1db3", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/atomics.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13880, "scanner": "repobility", "fingerprint": "92c05be209914e4a1055debb912457f1", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "asv/benchmarks/bvh_build.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13879, "scanner": "repobility", "fingerprint": "3212ec3b9a7eb2186828b54a2132443e", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/packman/bootstrap/install_package.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13878, "scanner": "repobility", "fingerprint": "c3bf1a2ca620bd2701144673077b61ef", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/packman/python.sh"}, "region": {"startLine": 9}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13877, "scanner": "repobility", "fingerprint": "9033646f0bacdae5becf64d65518050e", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/packman/packmanconf.py"}, "region": {"startLine": 107}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13876, "scanner": "repobility", "fingerprint": "e64fd72ac9cf11ece7eff7511e03e02f", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/packman/packmanconf.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13875, "scanner": "repobility", "fingerprint": "cd9278b6345bab7526ded2c154ea49e1", "category": "crypto", "severity": "medium", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: documentation/example path]", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/fem/example_taylor_green.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13874, "scanner": "repobility", "fingerprint": "3fcc61df8dd1d4b74ff805073a621dd1", "category": "crypto", "severity": "medium", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: documentation/example path]", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/fem/example_kelvin_helmholtz.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13873, "scanner": "repobility", "fingerprint": "dbf5b5f2fa3212910afaa967aa517164", "category": "crypto", "severity": "medium", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: documentation/example path]", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/fem/example_shallow_water.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13872, "scanner": "repobility", "fingerprint": "285f30e89ac4887e8ea1d6961f3031aa", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 515}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13871, "scanner": "repobility", "fingerprint": "66cd8305ff0660d1dfebabfe21a92d6a", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 489}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13870, "scanner": "repobility", "fingerprint": "d66cd3b819004f6dcd1376a43f7b622f", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 338}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13869, "scanner": "repobility", "fingerprint": "d7fb54f98e7c483c2926ec372cf633a6", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 182}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13868, "scanner": "repobility", "fingerprint": "52586d7a661c1b5d85d19bbaa8f2def7", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13867, "scanner": "repobility", "fingerprint": "fd3e188515e2877164b2d0bae124e52f", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13866, "scanner": "repobility", "fingerprint": "0d020e67ebe8e35b46cc153b05aacb7c", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13865, "scanner": "repobility", "fingerprint": "aea66acaff58b8a5d59041e7265c8ace", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/nanovdb/PNanoVDB.h"}, "region": {"startLine": 2956}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13864, "scanner": "repobility", "fingerprint": "d7d98f71f469c6ee7d55617d8c7f6f47", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_radix_sort.h"}, "region": {"startLine": 39}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13863, "scanner": "repobility", "fingerprint": "05b51fd0b8d613dfec1d44b89e0d9e0c", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/intersect.h"}, "region": {"startLine": 302}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13862, "scanner": "repobility", "fingerprint": "dde9ee91ac34706a523d693891c7e0ee", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/sort.cpp"}, "region": {"startLine": 72}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13861, "scanner": "repobility", "fingerprint": "8ddff5f4747b4e88522eb4e374377e12", "category": "crypto", "severity": "medium", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: test/fixture path]", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 10354, "scanner": "repobility-docker", "fingerprint": "d63b603872a2400ac7772b5f8776ee6d678021450df30b81cb1f194874e2ccb4", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "base", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|d63b603872a2400ac7772b5f8776ee6d678021450df30b81cb1f194874e2ccb4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/warp-cpp-test-env/Dockerfile"}, "region": {"startLine": 85}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Dockerfile base image uses the latest tag"}, "properties": {"repobilityId": 10353, "scanner": "repobility-docker", "fingerprint": "111a6494cd897b39dc29f54ee2706acc4302170d393d816a29321f876491984e", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "ghcr.io/astral-sh/uv:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|111a6494cd897b39dc29f54ee2706acc4302170d393d816a29321f876491984e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/warp-cpp-test-env/Dockerfile"}, "region": {"startLine": 82}}}]}, {"ruleId": "DKR007", "level": "warning", "message": {"text": "Docker build context has no .dockerignore"}, "properties": {"repobilityId": 10350, "scanner": "repobility-docker", "fingerprint": "c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Dockerfile exists but repository root has no .dockerignore.", "evidence": {"rule_id": "DKR007", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 10349, "scanner": "repobility-docker", "fingerprint": "0c1cf54c48cbe73ea0b252980df011c1a39ab18d214605fc6c87fd6b1a183cf8", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "base", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|0c1cf54c48cbe73ea0b252980df011c1a39ab18d214605fc6c87fd6b1a183cf8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/warp-builder/Dockerfile"}, "region": {"startLine": 280}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Dockerfile base image uses the latest tag"}, "properties": {"repobilityId": 10348, "scanner": "repobility-docker", "fingerprint": "0ec2246c1e500e5a21f95eeff5e7c228315ad21b57ae27a1484caf54dba4fb9a", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "ghcr.io/astral-sh/uv:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|0ec2246c1e500e5a21f95eeff5e7c228315ad21b57ae27a1484caf54dba4fb9a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/warp-builder/Dockerfile"}, "region": {"startLine": 277}}}]}, {"ruleId": "SEC005", "level": "warning", "message": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "properties": {"repobilityId": 10346, "scanner": "repobility-threat-engine", "fingerprint": "9dc89276814f244919eb08deda28c92adf1ba69d28fe01576c5b78aae179bf62", "category": "injection", "severity": "medium", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "shell=True detected \u2014 verify command source is not user-controllable", "evidence": {"match": "subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True", "reason": "shell=True detected \u2014 verify command source is not user-controllable", "rule_id": "SEC005", "scanner": "repobility-threat-engine", "confidence": 0.5, "correlation_key": "code|injection|warp/_src/build_dll.py|45|sec005"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/build_dll.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 10344, "scanner": "repobility-threat-engine", "fingerprint": "bac5d5cfc862fd728afccf867d39ebff23650f1d272a05e978c7640a3fbc113b", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n                        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bac5d5cfc862fd728afccf867d39ebff23650f1d272a05e978c7640a3fbc113b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/codegen.py"}, "region": {"startLine": 4213}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 10343, "scanner": "repobility-threat-engine", "fingerprint": "72083ef7847e2d078eb272417f3c211a5b862570fabefd841a5d8ccc9718f42f", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n            pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|72083ef7847e2d078eb272417f3c211a5b862570fabefd841a5d8ccc9718f42f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/context.py"}, "region": {"startLine": 3410}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 10342, "scanner": "repobility-threat-engine", "fingerprint": "c7a91a5be20b7a18784c1aad3d52320aef1c87ee5c1b11818ece57c82f54dd11", "category": "error_handling", "severity": "medium", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": "Pattern matched with no mitigating context found | [R34-retro auto-suppress: documentation/example path]", "evidence": {"match": "except Exception:\n        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c7a91a5be20b7a18784c1aad3d52320aef1c87ee5c1b11818ece57c82f54dd11"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/browse.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "SEC012", "level": "warning", "message": {"text": "[SEC012] ZipSlip \u2014 Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory."}, "properties": {"repobilityId": 10341, "scanner": "repobility-threat-engine", "fingerprint": "8a73b85060e6a87029d60085e0a879b95fb8b6bfade8dd9315f67639eb7d38fa", "category": "path_traversal", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".extractall(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC012", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|path_traversal|token|156|sec012"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/packman/bootstrap/install_package.py"}, "region": {"startLine": 156}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10337, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8f6e1ec4a22002308d4885ac443d70d6bfbe61101bd51051e3938f8214876edd", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/native/cuBQL/builder/cuda/elh_builder.h", "duplicate_line": 122, "correlation_key": "fp|8f6e1ec4a22002308d4885ac443d70d6bfbe61101bd51051e3938f8214876edd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/cuBQL/builder/cuda/sah_builder.h"}, "region": {"startLine": 106}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10336, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2321c431a0967e114a545d1ce1b3bd4156befd2b5bcd4a740c33071dd9455d77", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/paddle.py", "duplicate_line": 224, "correlation_key": "fp|2321c431a0967e114a545d1ce1b3bd4156befd2b5bcd4a740c33071dd9455d77"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/torch.py"}, "region": {"startLine": 211}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10335, "scanner": "repobility-ai-code-hygiene", "fingerprint": "26a24bc38c91c4fd715051ef1bba3e8ca634674c0a396c733f43be03bc9fcd14", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/space/shape/square_shape_function.py", "duplicate_line": 623, "correlation_key": "fp|26a24bc38c91c4fd715051ef1bba3e8ca634674c0a396c733f43be03bc9fcd14"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/shape/triangle_shape_function.py"}, "region": {"startLine": 405}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10334, "scanner": "repobility-ai-code-hygiene", "fingerprint": "842cbecd5950e0cdc397cd14864904bd6261d23d081a0a632a45cfe683d7775a", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/space/shape/tet_shape_function.py", "duplicate_line": 290, "correlation_key": "fp|842cbecd5950e0cdc397cd14864904bd6261d23d081a0a632a45cfe683d7775a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/shape/triangle_shape_function.py"}, "region": {"startLine": 183}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10333, "scanner": "repobility-ai-code-hygiene", "fingerprint": "905847c3df63202902f1a1a1b9f8be4e447e3db79c203e5ec782cfdd1480e850", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/space/shape/square_shape_function.py", "duplicate_line": 623, "correlation_key": "fp|905847c3df63202902f1a1a1b9f8be4e447e3db79c203e5ec782cfdd1480e850"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/shape/tet_shape_function.py"}, "region": {"startLine": 533}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10332, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cd59b7feac3b09f010326f2a6b171137364f9d822767528e449a413102381ec3", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/space/grid_2d_function_space.py", "duplicate_line": 99, "correlation_key": "fp|cd59b7feac3b09f010326f2a6b171137364f9d822767528e449a413102381ec3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/space/grid_3d_function_space.py"}, "region": {"startLine": 137}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10331, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e794ec2b5144d3d40e9eab8c8c569d3810153d5cdc07f056ff27bc8270718ac1", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/geometry/tetmesh.py", "duplicate_line": 511, "correlation_key": "fp|e794ec2b5144d3d40e9eab8c8c569d3810153d5cdc07f056ff27bc8270718ac1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/geometry/trimesh.py"}, "region": {"startLine": 256}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10330, "scanner": "repobility-ai-code-hygiene", "fingerprint": "aac339678856ac5a3149572b82e8349f606e88c0f86aba6d72f84c508f4dc1f4", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/geometry/quadmesh.py", "duplicate_line": 1, "correlation_key": "fp|aac339678856ac5a3149572b82e8349f606e88c0f86aba6d72f84c508f4dc1f4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/geometry/trimesh.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10329, "scanner": "repobility-ai-code-hygiene", "fingerprint": "57048167297bec1f82d9da658f8aca016462e45366050c0e59fd8aa7d8fd7016", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/geometry/hexmesh.py", "duplicate_line": 774, "correlation_key": "fp|57048167297bec1f82d9da658f8aca016462e45366050c0e59fd8aa7d8fd7016"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/geometry/tetmesh.py"}, "region": {"startLine": 526}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10328, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c6e9682fcb7270194d8199130db7f7d6104e44179d7ad193634931051f490815", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/geometry/quadmesh.py", "duplicate_line": 1, "correlation_key": "fp|c6e9682fcb7270194d8199130db7f7d6104e44179d7ad193634931051f490815"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/geometry/tetmesh.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10327, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2cf184a2bc4faf21a9b96cac64cc9b3345f308c1d5c66be4da80d41e39704b92", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/geometry/adaptive_nanogrid.py", "duplicate_line": 206, "correlation_key": "fp|2cf184a2bc4faf21a9b96cac64cc9b3345f308c1d5c66be4da80d41e39704b92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/geometry/nanogrid.py"}, "region": {"startLine": 357}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 10326, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e86f8ad3d7da65d24eed2d7c7a0e93b82f299c6c3f10c9b0e63f685cb7d63e8d", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "warp/_src/fem/geometry/grid_2d.py", "duplicate_line": 187, "correlation_key": "fp|e86f8ad3d7da65d24eed2d7c7a0e93b82f299c6c3f10c9b0e63f685cb7d63e8d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/fem/geometry/grid_3d.py"}, "region": {"startLine": 222}}}]}, {"ruleId": "CORE_LARGE_FILES", "level": "warning", "message": {"text": "Average file size is 507 lines (recommend <300)"}, "properties": {"repobilityId": 10325, "scanner": "repobility-core", "fingerprint": "97cb8ea9e89f8879901368beec804dd2aadadfa07f6cb2247358056fac2528a3", "category": "quality", "severity": "medium", "confidence": null, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"rule_id": "CORE_LARGE_FILES", "scanner": "repobility-core", "correlation_key": "fp|97cb8ea9e89f8879901368beec804dd2aadadfa07f6cb2247358056fac2528a3"}}}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22202, "scanner": "repobility", "fingerprint": "fc5a7230a5294e6c483f554e605eb0a5", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO add default implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/jax_experimental/custom_call.py"}, "region": {"startLine": 149}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22201, "scanner": "repobility", "fingerprint": "9f3e6d434f62d99ff0e341b918f0c17a", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: general purpose sort gradients not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_radix_sort.h"}, "region": {"startLine": 1043}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22200, "scanner": "repobility", "fingerprint": "ae16c3431f023799a6cd27cd94a0e52b", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: general purpose sort gradients not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_radix_sort.h"}, "region": {"startLine": 1036}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22199, "scanner": "repobility", "fingerprint": "d53fd0e8be6518f685e3c14039c16c40", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: How shall we implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/vec.h"}, "region": {"startLine": 1920}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22198, "scanner": "repobility", "fingerprint": "835b144a2ea3a784c3367006d0a579d8", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: How shall we implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/vec.h"}, "region": {"startLine": 1898}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22197, "scanner": "repobility", "fingerprint": "4a4b13ae7174a7515526dbba68f1f97b", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: How shall we implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/vec.h"}, "region": {"startLine": 1883}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22196, "scanner": "repobility", "fingerprint": "2a647c1920b3fe4f6abb7451ab8095e0", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: How shall we implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/vec.h"}, "region": {"startLine": 1797}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22195, "scanner": "repobility", "fingerprint": "7bf7951cc01cbd4275fe85ddff6b97a4", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: How shall we implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/vec.h"}, "region": {"startLine": 1496}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22194, "scanner": "repobility", "fingerprint": "772c70b19f545328a73c59829e76ba2d", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: How shall we implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/vec.h"}, "region": {"startLine": 1475}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22193, "scanner": "repobility", "fingerprint": "6e9da6dc0b8be7afb15a403912348317", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: How shall we implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/vec.h"}, "region": {"startLine": 1434}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22192, "scanner": "repobility", "fingerprint": "658fe9d2977ada95e60fae7bc9a10877", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: Implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/texture.h"}, "region": {"startLine": 620}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22191, "scanner": "repobility", "fingerprint": "b7751efffb28c07b0fd89232f82a7c9b", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_reduce.h"}, "region": {"startLine": 758}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22190, "scanner": "repobility", "fingerprint": "9f2186eff882fa91011c51d38f94720e", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_reduce.h"}, "region": {"startLine": 751}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22189, "scanner": "repobility", "fingerprint": "06ac41317d0e6aba81846d4a3cc4ae83", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_reduce.h"}, "region": {"startLine": 743}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22188, "scanner": "repobility", "fingerprint": "49711e18da0190f52993e181bfca0a5f", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_reduce.h"}, "region": {"startLine": 736}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22187, "scanner": "repobility", "fingerprint": "7f8200504d0dfdbd2e0c89cf57df3cb5", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: axis-specific reduction gradients not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_reduce.h"}, "region": {"startLine": 607}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22186, "scanner": "repobility", "fingerprint": "3eb9624358299028f39b1adc4356d75d", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: general purpose reduction gradients not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_reduce.h"}, "region": {"startLine": 602}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22185, "scanner": "repobility", "fingerprint": "af9a65ab1b16d3d8cdfd6b1c43c5360e", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_scan.h"}, "region": {"startLine": 289}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22184, "scanner": "repobility", "fingerprint": "0bf4d4a85dc939a05ed2629ba0b8a1ec", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_scan.h"}, "region": {"startLine": 278}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22183, "scanner": "repobility", "fingerprint": "69d44e4d86b91991218f0e7d75445886", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_scan.h"}, "region": {"startLine": 267}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22182, "scanner": "repobility", "fingerprint": "ed6ff26f24d10e864d5c741dc9fe8da8", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "todo: not implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/native/tile_scan.h"}, "region": {"startLine": 260}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22181, "scanner": "repobility", "fingerprint": "194c8cf31db18cb6e203718d3683ab20", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 496}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22180, "scanner": "repobility", "fingerprint": "adae7061b984f67c30d3b1c13762503f", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 410}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22179, "scanner": "repobility", "fingerprint": "e8a527c6ac28f9698f8341a1fe0533a8", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 329}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22178, "scanner": "repobility", "fingerprint": "90b879948d6baaab179b020f7f25fbaf", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 269}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22177, "scanner": "repobility", "fingerprint": "33f4e528f45dd2d9be584db6b266f45e", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 167}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22176, "scanner": "repobility", "fingerprint": "a00745e9c66455e6f58d4fea14bb60d8", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22175, "scanner": "repobility", "fingerprint": "d4275258ca07e9e19471dd9cdc8a8936", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "TODO: Make sure classes implementing __eq__ also implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pyproject.toml"}, "region": {"startLine": 116}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 10352, "scanner": "repobility-docker", "fingerprint": "3a449fb124f54c230efd7729489fe52b1ec5e4699d7f30d8e4e001839075b295", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|3a449fb124f54c230efd7729489fe52b1ec5e4699d7f30d8e4e001839075b295"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/warp-cpp-test-env/Dockerfile"}, "region": {"startLine": 27}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 10351, "scanner": "repobility-docker", "fingerprint": "7eabd30605a92cf33662a810a20e9b70dbeaa7d7b4b0316e452e4733f17bc369", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "ubuntu:${UBUNTU_VERSION}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|7eabd30605a92cf33662a810a20e9b70dbeaa7d7b4b0316e452e4733f17bc369"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/warp-cpp-test-env/Dockerfile"}, "region": {"startLine": 10}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 10347, "scanner": "repobility-docker", "fingerprint": "4fbe91e88d6bde6e389eac731fc20fee571813873af55f354ef06b566f1f6e4a", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${MANYLINUX_IMAGE}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|4fbe91e88d6bde6e389eac731fc20fee571813873af55f354ef06b566f1f6e4a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/warp-builder/Dockerfile"}, "region": {"startLine": 10}}}]}, {"ruleId": "ERR001", "level": "none", "message": {"text": "[ERR001] Silent Exception Swallowing (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 10345, "scanner": "repobility-threat-engine", "fingerprint": "93b9da83522ef7033c1689b56fc2639ef703f7cce5574751f2046196162761e3", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|93b9da83522ef7033c1689b56fc2639ef703f7cce5574751f2046196162761e3"}}}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 10340, "scanner": "repobility-threat-engine", "fingerprint": "7ba049a2c270a46df2caf769447d55a1a1175497c39ede40eb0ccde4ecf4c1d2", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "print(\"  Part 1: Global tracking  (wp.config.track_memory = True)", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|token|11|print part 1: global tracking wp.config.track_memory true"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/core/example_alloc_tracker.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 10339, "scanner": "repobility-threat-engine", "fingerprint": "b345fe392668eb7c0e0a23aa5151fbbcbab2b2c26bcca8d2fa6befbf39be56b3", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Environment variable or config lookup (credentials loaded safely)", "evidence": {"match": "print(\"Error: KITMAKER_API_TOKEN environment variable is not set\")", "reason": "Environment variable or config lookup (credentials loaded safely)", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|token|18|print error: kitmaker_api_token environment variable is not set"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/ci/publishing/kitmaker_release.py"}, "region": {"startLine": 190}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 10338, "scanner": "repobility-threat-engine", "fingerprint": "19e1f21ebb1afde55dea20aa718b7e5a8a95607478cde6041206ec308608531b", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "print(f\"config.py:              {config_py_version}\")", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|token|12|print f config.py: config_py_version"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/pre-commit-hooks/check_version_consistency.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "QUAL006", "level": "error", "message": {"text": "Floats used for monetary values"}, "properties": {"repobilityId": 22280, "scanner": "repobility", "fingerprint": "8c27583371ad4ff1dadf4739ebef6176", "category": "quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "total = float", "aljefra_cwe": ["CWE-682"], "aljefra_owasp": null, "aljefra_pattern_slug": "floats-for-money"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 972}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19783, "scanner": "repobility", "fingerprint": "4de289ec5fc1ac8c7cfbdc47a0111fcc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_direct_from_paddle", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_paddle.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19782, "scanner": "repobility", "fingerprint": "e7234b24493790c563d4e0d2a467dd18", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_ctype_from_paddle", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_paddle.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19781, "scanner": "repobility", "fingerprint": "5f2fdb595e05f2496da319956fe64653", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_from_paddle", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_paddle.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19780, "scanner": "repobility", "fingerprint": "6f40e2e99ef82030a3c384c44087219a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_direct_from_torch", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_torch.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19779, "scanner": "repobility", "fingerprint": "94e2c7e0f9228cac79786d4fbabadfcb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_ctype_from_torch", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_torch.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19778, "scanner": "repobility", "fingerprint": "a5b097edfe197cbd754a4ab40015b038", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_from_torch", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_interop_torch.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19777, "scanner": "repobility", "fingerprint": "90f2db66783e4a72e575702db13f62e7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_p2p_stream", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 193}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19776, "scanner": "repobility", "fingerprint": "59cf76405cdb40efbd0205ae416499e1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_p2p", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 180}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19775, "scanner": "repobility", "fingerprint": "eb33661047fa6b5d9e0ac3a904d34002", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_d2d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 168}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19774, "scanner": "repobility", "fingerprint": "e380f0fb18ef9376f0342cec74b17cb2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_d2h_pinned", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 156}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19773, "scanner": "repobility", "fingerprint": "72f283298b92f51f834df88dd48be3bb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_h2d_pinned", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19772, "scanner": "repobility", "fingerprint": "6b52cfcd94f506c8bc5033bd3f189afd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_d2h", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 132}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19771, "scanner": "repobility", "fingerprint": "061b54f40db0bb66acad0a57d50013ae", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_h2d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 120}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19770, "scanner": "repobility", "fingerprint": "79768d35396b43050390dab9ca95fa7d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_zeros", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19769, "scanner": "repobility", "fingerprint": "34061e864e2520e3539c505480d783b8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_free", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 96}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19768, "scanner": "repobility", "fingerprint": "72c915af107e547b20b846c191fed077", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_alloc", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/benchmarks/benchmark_api.py"}, "region": {"startLine": 84}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19767, "scanner": "repobility", "fingerprint": "5c5734f24d1ac59d13c9d8c404de5028", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cholesky_solver_graph_capture", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/tile/example_tile_block_cholesky.py"}, "region": {"startLine": 393}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19766, "scanner": "repobility", "fingerprint": "6f4cea1bcbeaad4df0d1323d2bdef03a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cholesky_solver", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/tile/example_tile_block_cholesky.py"}, "region": {"startLine": 320}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19765, "scanner": "repobility", "fingerprint": "576d8ef15dd18f333da99b3e72b83f34", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_work_queue", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/core/example_work_queue.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19764, "scanner": "repobility", "fingerprint": "e9489fc6a51b0329d7acae00d9ce62e2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spinlock_counter", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/core/example_spin_lock.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19763, "scanner": "repobility", "fingerprint": "5da979dafe7d07d15ea3e6c5b0f69fbd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_graph_destroy_during_capture", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 496}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19762, "scanner": "repobility", "fingerprint": "67b76f43cde968502cdb3773262ed1b9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_event_external", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 356}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19761, "scanner": "repobility", "fingerprint": "55f9598bc87781f0c366a384be46bbae", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_event_synchronize", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 295}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19760, "scanner": "repobility", "fingerprint": "de4b6d5287b7b754ceec69490937c0b2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_stream_scope_wait_stream", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 263}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19759, "scanner": "repobility", "fingerprint": "37a0c63f74a889b7d258d3abcb627085", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_stream_scope_wait_event", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 225}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19758, "scanner": "repobility", "fingerprint": "d19166ea3b3e4d6f13054bebe3c2db57", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_stream_scope_synchronize", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 195}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19757, "scanner": "repobility", "fingerprint": "312e7901920e8cda0dae9a60499eee8b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_stream_arg_wait_stream", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 166}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19756, "scanner": "repobility", "fingerprint": "4303f51cac974d144eb37c13496b5a90", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_stream_arg_wait_event", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 130}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19755, "scanner": "repobility", "fingerprint": "7e81c0f95883a8dcb5ef26a69e7aacf0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_stream_arg_synchronize", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19754, "scanner": "repobility", "fingerprint": "22e0755cd10731a278920de9b5560a5d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_stream_arg_explicit_sync", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_streams.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19753, "scanner": "repobility", "fingerprint": "764ad430fdea58594ef0cbfd200d3655", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_multigpu_pingpong_streams", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_multigpu.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19752, "scanner": "repobility", "fingerprint": "5a90a753186f5c2308b083b283c5f5bc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_multigpu_pingpong", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_multigpu.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19751, "scanner": "repobility", "fingerprint": "85dbe4f4762970703d4f04cd93ac6ab7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_ipc_multiprocess_write", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_ipc.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19750, "scanner": "repobility", "fingerprint": "5e8686f7634662344ddd841f9257535b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture3d_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 1168}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19749, "scanner": "repobility", "fingerprint": "988ef92084cf4b027e4b72d3fec9daf5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture2d_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 1162}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19748, "scanner": "repobility", "fingerprint": "be2dc9c98a7a474cf1c0ec5da67f20cb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture1d_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 846}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19747, "scanner": "repobility", "fingerprint": "82abd7c9a6f497006879671d1a8a484e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture1d_resolution_query", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 829}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19746, "scanner": "repobility", "fingerprint": "272dd01674cda9e9db9a14556a127f8b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture3d_resolution_query", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 648}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19745, "scanner": "repobility", "fingerprint": "042afb330c4ab90c1adaf7b49b811b25", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture2d_resolution_query", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 499}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19744, "scanner": "repobility", "fingerprint": "351d13acc329c835b2549620e6e09b05", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture3d_resolution", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 218}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19743, "scanner": "repobility", "fingerprint": "a300ea3cff1dba5695b7f2c9f1a0a16f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture2d_resolution", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 135}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19742, "scanner": "repobility", "fingerprint": "27c2c14fad7688a737e4418107ead94d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_texture1d_resolution", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_texture.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19741, "scanner": "repobility", "fingerprint": "c788a40aa55e0f7b26a4349a94a0f443", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 483}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19740, "scanner": "repobility", "fingerprint": "eebc2316bfd99d7caecdd3ac266a1212", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_kernels_v2", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19739, "scanner": "repobility", "fingerprint": "56c1144ce7757fe2b1453ce618cfcb69", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_kernels_v1", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 131}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19738, "scanner": "repobility", "fingerprint": "be7b69a2cea261b1a8ff61d1891b89d7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_fill_v2", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 118}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19737, "scanner": "repobility", "fingerprint": "615032719cf6bf2240f424cb3dd76465", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_fill_v1", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19736, "scanner": "repobility", "fingerprint": "5b25116a24e2fd9cbd93bbb4a8965eb5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_full", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19735, "scanner": "repobility", "fingerprint": "3b097d3a07d8bcbfc84306ba342739a1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_zero_v2", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19734, "scanner": "repobility", "fingerprint": "17497e6cd6c3a676407d0b2689e7b395", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_zero_v1", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19733, "scanner": "repobility", "fingerprint": "9dbe1bafb23bf5089eaea540b182cc7a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_async_zeros", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/cuda/test_async.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19732, "scanner": "repobility", "fingerprint": "d37c7710f87f5ceb16fd42cdcd039c0f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_ffi_jax_kernel_scale_vec_constant", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 628}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19731, "scanner": "repobility", "fingerprint": "92c6cb9251ebd974a1e16e45df3ed4dc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_ffi_jax_kernel_in_out", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 606}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19730, "scanner": "repobility", "fingerprint": "24ac7f2d24a3fc7b44bbd1825ab440b7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_ffi_jax_kernel_diagonal", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 575}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19729, "scanner": "repobility", "fingerprint": "f3721ef995604771a65444a328694fdf", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_ffi_jax_kernel_sincos", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 543}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19728, "scanner": "repobility", "fingerprint": "df64b353b4bb05333a7f25bcc5958ada", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_ffi_jax_kernel_add", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 516}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19727, "scanner": "repobility", "fingerprint": "8eacc50cd33e5e6f0150aa31271f73bd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_jax_kernel_launch_dims", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 294}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19726, "scanner": "repobility", "fingerprint": "1778cd5f53c7b2551d97abf9236147ce", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_jax_kernel_multiarg", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 259}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19725, "scanner": "repobility", "fingerprint": "e5ff175b98dc7e1d9546392efa94bcdb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_jax_kernel_vecmat", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 215}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19724, "scanner": "repobility", "fingerprint": "aff242893125f15ddd93ba5a2a680b3d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_jax_kernel_scalar", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 173}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19723, "scanner": "repobility", "fingerprint": "f7583f6292410397227f315e36ac5783", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_jax_kernel_basic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_jax.py"}, "region": {"startLine": 142}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19722, "scanner": "repobility", "fingerprint": "023344940eea665f73c295778f99700c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tensor_in_warp_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/interop/test_torch.py"}, "region": {"startLine": 411}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19721, "scanner": "repobility", "fingerprint": "1a2eb6ec23537585c4eaec963c61a9b9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_single_layer_nn", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_mlp.py"}, "region": {"startLine": 274}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19720, "scanner": "repobility", "fingerprint": "7a85a507c05a497e4f89f9c145f31818", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_math_ifft", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_mathdx.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19719, "scanner": "repobility", "fingerprint": "7f082191aa29461bf140393fe3671836", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_math_fft", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_mathdx.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19718, "scanner": "repobility", "fingerprint": "cb41220249384aac7bdc70444c51a270", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_math_matmul", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_mathdx.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19717, "scanner": "repobility", "fingerprint": "589d20966fb7a370a7e419d38a4d70b7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_cholesky_upper_multiple_rhs_inplace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 862}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19716, "scanner": "repobility", "fingerprint": "afddcf06d17af0e258a9e7c28f28c4c8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_cholesky_upper_multiple_rhs", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 836}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19715, "scanner": "repobility", "fingerprint": "23130d75e02f0c3793fb62750753ccb1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_cholesky_upper_inplace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 804}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19714, "scanner": "repobility", "fingerprint": "0ebb7f587a1c180ace1e8458e0e21fd6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_cholesky_upper", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 749}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19713, "scanner": "repobility", "fingerprint": "fb00fbb4ff4e36aafeaf2c0da1de1805", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_upper_solve", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 642}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19712, "scanner": "repobility", "fingerprint": "ba936c89096a5bcaca9613fb634d6790", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_lower_solve", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 634}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19711, "scanner": "repobility", "fingerprint": "aac9967f1f6949dcf9e8b30a16fe32c8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_cholesky_block_cholesky", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_cholesky.py"}, "region": {"startLine": 513}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19710, "scanner": "repobility", "fingerprint": "627d0b34d1127604333cb75feca9bd61", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_atomic_bitwise_matrix", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_atomic_bitwise.py"}, "region": {"startLine": 305}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19709, "scanner": "repobility", "fingerprint": "4cc5a7aba3b0208c57d255010d996bf2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_atomic_bitwise_vector", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_atomic_bitwise.py"}, "region": {"startLine": 187}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19708, "scanner": "repobility", "fingerprint": "7f615ad7d6dcf8c30d2b303ecf13bf5e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_atomic_bitwise_scalar", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_atomic_bitwise.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19707, "scanner": "repobility", "fingerprint": "6b46dbf0382ce4a6eb6a24e6a3196ea4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_matmul_large_fp64", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 421}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19706, "scanner": "repobility", "fingerprint": "81d2332fea02d374ecaae333aa21aec1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_matmul_return_form_backward", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 374}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19705, "scanner": "repobility", "fingerprint": "161a017453d002880d295057c6ae921e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_matmul_large_unaligned", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 347}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19704, "scanner": "repobility", "fingerprint": "2e559d35e91461e71309a1da18afb592", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_matmul_large_aligned", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 322}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19703, "scanner": "repobility", "fingerprint": "85cb4e5523bdb34c8214691740255ff1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_matmul_odd_shapes", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 242}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19702, "scanner": "repobility", "fingerprint": "ffb63cc220e076b35774e50e353bb7c6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_matmul_return_form_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 167}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19701, "scanner": "repobility", "fingerprint": "43d24696cba157db3be8ce339519ac39", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_transpose_matmul", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 154}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19700, "scanner": "repobility", "fingerprint": "3290c1066e5aa1fc2d8ac3747a9f0658", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_transpose_matmul_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19699, "scanner": "repobility", "fingerprint": "98bb814cfb78b0605d967f0a17ebd91c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_gemm", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 107}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19698, "scanner": "repobility", "fingerprint": "66a093839d8800405e0c0306c8ae7412", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_grouped_gemm", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul_no_mathdx.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19697, "scanner": "repobility", "fingerprint": "e02cc28b592415d0f6ad59e2e34a2f70", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load_stride_unaligned_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 512}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19696, "scanner": "repobility", "fingerprint": "8e6242c504f094db847ef5fc30dc6ab8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load_aligned_offset_unaligned_size", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 474}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19695, "scanner": "repobility", "fingerprint": "dfd91b08da573fd0755e2ef6a0160c91", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load_aligned_offset_unaligned_size_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 462}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19694, "scanner": "repobility", "fingerprint": "2e00cfb0b881a6e9bac9507f316015c7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load_aligned_small", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 432}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19693, "scanner": "repobility", "fingerprint": "502d832f0942b0ec6d2b955cec4149d8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load_unaligned", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 387}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19692, "scanner": "repobility", "fingerprint": "3fc06a23f298cb4e021ee983b9ffb13a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_atomic_add_indexed", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 352}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19691, "scanner": "repobility", "fingerprint": "38da3260c420c943048ea8f3eee368a4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_store_indexed", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 310}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19690, "scanner": "repobility", "fingerprint": "752c025316f8a5bdf1e7bcc12f79a976", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load_indexed_non_owning", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 277}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19689, "scanner": "repobility", "fingerprint": "7b6ce00fd5b1fcbf1c40a7c383d587ae", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load_indexed", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19688, "scanner": "repobility", "fingerprint": "1658081fe20710eef0594995245d9312", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_load", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_load.py"}, "region": {"startLine": 171}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19687, "scanner": "repobility", "fingerprint": "c8da8b8500dfb022e2eab2c9d9504424", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_view_map_assign_column_backward", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 166}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19686, "scanner": "repobility", "fingerprint": "2d406fb1d586acd29652ebcfddd48314", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_view_map_assign_column", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 148}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19685, "scanner": "repobility", "fingerprint": "6094d11cf33900f1cf04b55bcbcb824f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_view_map_assign_column_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 136}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19684, "scanner": "repobility", "fingerprint": "122b67237f8b9cf09467adb190ef48c5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_view_offset_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19683, "scanner": "repobility", "fingerprint": "e13e0be61e91151bbac653f2a83304a8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_assign_2d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19682, "scanner": "repobility", "fingerprint": "62292f97524ec6bb0f4208685b683467", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_assign_2d_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 80}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19681, "scanner": "repobility", "fingerprint": "7dd805f1d50fe40f065c6720231287de", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_assign_1d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19680, "scanner": "repobility", "fingerprint": "a8b544a515a2f5a7f89dc10900ed6446", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_assign_1d_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19679, "scanner": "repobility", "fingerprint": "66d75219dee9f56dda4ed5839d78ad37", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_view", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19678, "scanner": "repobility", "fingerprint": "8f249d36212ab3ec4bb1d842a5070615", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_view_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_view.py"}, "region": {"startLine": 18}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19677, "scanner": "repobility", "fingerprint": "13088f6d21c43a41810186f9645d4026", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_matmul_return_form_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul.py"}, "region": {"startLine": 154}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19676, "scanner": "repobility", "fingerprint": "ed4662a95584bd031757fce40d81362d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_transpose_matmul", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19675, "scanner": "repobility", "fingerprint": "985439309a03f59866c4b83385c2c23c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_transpose_matmul_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul.py"}, "region": {"startLine": 131}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19674, "scanner": "repobility", "fingerprint": "7a5c13c48b43422ed406cbfdccb25765", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_gemm", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19673, "scanner": "repobility", "fingerprint": "38232060d3e48a41764698a6e33c1013", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_grouped_gemm", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_matmul.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19672, "scanner": "repobility", "fingerprint": "b167325a19a8ffd7f00ed49ac2e08a9f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_arange", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 916}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19671, "scanner": "repobility", "fingerprint": "62c094affdd6fc2a7e38970d0d7f5451", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_untile_vector", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 866}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19670, "scanner": "repobility", "fingerprint": "db0b0827d6f21e511ee6d74d97c3b40a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_untile_vector_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 855}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19669, "scanner": "repobility", "fingerprint": "f8bc7cecac72fdf59c875852e39bf78e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_untile_scalar", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 842}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19668, "scanner": "repobility", "fingerprint": "deb55d6990844983276bd5903a957d1d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_untile", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 818}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19667, "scanner": "repobility", "fingerprint": "3e34a2bf0f1f7eb616a25f96449b2076", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_reduce_axis_tier3", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 752}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19666, "scanner": "repobility", "fingerprint": "7a66e54e90b2f5b89d06cd9f35272b78", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_reduce_axis_tier2", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 698}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19665, "scanner": "repobility", "fingerprint": "d3abf63aeb4bbedb7d509a503de4424e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_reduce_axis_tier1", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 644}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19664, "scanner": "repobility", "fingerprint": "60b0e5e47ca82674317c496e7251d5d3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_reduce_custom_struct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 484}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19663, "scanner": "repobility", "fingerprint": "bf0e3ce52c243490e176a9a9cb8dac54", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_sum_to_shared", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_reduce.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19662, "scanner": "repobility", "fingerprint": "b14742567a02c67d805bab9fdc669229", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_shared_simple_reduction_sub", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_shared_memory.py"}, "region": {"startLine": 303}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19661, "scanner": "repobility", "fingerprint": "fde92122dc1f414649bf5417e1e056b1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_shared_simple_reduction_add", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_shared_memory.py"}, "region": {"startLine": 276}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19660, "scanner": "repobility", "fingerprint": "abedd1e879fb1451a65022f065a42e2f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_shared_vec_accumulation", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile_shared_memory.py"}, "region": {"startLine": 215}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19659, "scanner": "repobility", "fingerprint": "46e7dc2b2eec653bc3110ca9afa4c06c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_const_mul", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 538}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19658, "scanner": "repobility", "fingerprint": "c0d28d5beef98d1cdfe6427b0dc2eecf", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_operators", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 474}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19657, "scanner": "repobility", "fingerprint": "2a5a6844a8975c12b0cb2038f393e28b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_n_map_mixed_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 426}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19656, "scanner": "repobility", "fingerprint": "6b132edc89ecaff8180e8b55dada9cf7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_n_map", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 387}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19655, "scanner": "repobility", "fingerprint": "7211f2cca6cc95582eb1b2bbec48021e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_binary_map_mixed_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 332}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19654, "scanner": "repobility", "fingerprint": "b751f52656245004c6828ccc45bc02b7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_binary_map", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 266}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19653, "scanner": "repobility", "fingerprint": "0a540d96a4bffee5742581921ba9252b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_unary_map_mixed_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 192}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19652, "scanner": "repobility", "fingerprint": "51f8ea3a90c2e2238a9c2a756413ed6a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_unary_map", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 133}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19651, "scanner": "repobility", "fingerprint": "4c8d679977fe41204abbc9561a88ae2c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_copy_2d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19650, "scanner": "repobility", "fingerprint": "286d1318e3bffd67ca81156596f1914b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tile_copy_1d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/tile/test_tile.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19649, "scanner": "repobility", "fingerprint": "c5ccfaa43993808268c36b2f98ccaf95", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_kernel_multiple_overloads_without_strip_hash", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/aot/test_module_aot.py"}, "region": {"startLine": 362}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19648, "scanner": "repobility", "fingerprint": "6dbd14045860170434354c6364693f23", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_kernel_one_overload_with_strip_hash", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/aot/test_module_aot.py"}, "region": {"startLine": 324}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19647, "scanner": "repobility", "fingerprint": "d04e34a765c0aca7f724151f3c0d7f8a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_module_load_resolution", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/aot/test_module_aot.py"}, "region": {"startLine": 183}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19646, "scanner": "repobility", "fingerprint": "071a2e1ab47a33ac6a1843a9ea95f8af", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_disable_hashing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/aot/test_module_aot.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19645, "scanner": "repobility", "fingerprint": "3f5e07887a80aa194d1e1b1749924700", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_grouped_bvh.py"}, "region": {"startLine": 545}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19644, "scanner": "repobility", "fingerprint": "0a114c318ba15906a0649b7f7600e389", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_codegen_adjoints_with_select", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_grouped_bvh.py"}, "region": {"startLine": 525}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19643, "scanner": "repobility", "fingerprint": "9a2495956397b45c21c86cd4c462966e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_capture_bvh_rebuild_grouped", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_grouped_bvh.py"}, "region": {"startLine": 422}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19642, "scanner": "repobility", "fingerprint": "2b7bbf8777d928e884b0010b93585317", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_query_ray", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_grouped_bvh.py"}, "region": {"startLine": 260}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19641, "scanner": "repobility", "fingerprint": "3441da10b0f055e3ead2ff7a6aef513a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_query_aabb", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_grouped_bvh.py"}, "region": {"startLine": 256}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19640, "scanner": "repobility", "fingerprint": "698faa7b13b11aea726900cb3f7fcd2a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_bvh.py"}, "region": {"startLine": 679}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19639, "scanner": "repobility", "fingerprint": "602993f77e9d923028269befc144315e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_codegen_adjoints_with_select", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_bvh.py"}, "region": {"startLine": 659}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19638, "scanner": "repobility", "fingerprint": "86b8119398f1cb6cfff02edfd18f548f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_capture_bvh_rebuild", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_bvh.py"}, "region": {"startLine": 197}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19637, "scanner": "repobility", "fingerprint": "9d5193d2092842d07cef6e33ba6c28b6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_query_ray", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_bvh.py"}, "region": {"startLine": 127}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19636, "scanner": "repobility", "fingerprint": "4e7c86b247535604f43544dc3e11e8f7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bvh_query_aabb", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_bvh.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19635, "scanner": "repobility", "fingerprint": "a99d2b60321a06d89a79f0d051e79193", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_hashgrid_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_hash_grid.py"}, "region": {"startLine": 449}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19634, "scanner": "repobility", "fingerprint": "eb6bb79e6a30c37a974e25d47d3150fb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_hashgrid_codegen_adjoints_with_select", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_hash_grid.py"}, "region": {"startLine": 438}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19633, "scanner": "repobility", "fingerprint": "5e94a066b0374ddf3d3e283cb581e779", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_hashgrid_multiprecision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_hash_grid.py"}, "region": {"startLine": 247}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19632, "scanner": "repobility", "fingerprint": "84c2f49c926f93cead0733887ff2f7e8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_hashgrid_multiple_streams", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_hash_grid.py"}, "region": {"startLine": 207}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19631, "scanner": "repobility", "fingerprint": "54ea2ee78684de5d7ef6cc949867e3db", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_hashgrid_inputs", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_hash_grid.py"}, "region": {"startLine": 150}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19630, "scanner": "repobility", "fingerprint": "281aed161c5052c45b957687fc3f2532", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_hashgrid_query", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_hash_grid.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19629, "scanner": "repobility", "fingerprint": "d969c1a61f17e79f683cd0dbe120312e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_closest_v", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 176}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19628, "scanner": "repobility", "fingerprint": "d093cdabb1a0fec5dfef68d59a12145a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_lookup_v", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19627, "scanner": "repobility", "fingerprint": "07cc172a8adb1822764b6a0f91096360", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_grad_world_f_linear_values", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 136}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19626, "scanner": "repobility", "fingerprint": "1198a77c342b21fa1181b5fa71c6230c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_world_f_linear_values", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 126}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19625, "scanner": "repobility", "fingerprint": "9cf063d7c86e1d19a47c0bbfd3896e9a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_grad_local_f_linear_values", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 107}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19624, "scanner": "repobility", "fingerprint": "acaaffd5970e72f5f8dd92ab83d4b8a2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_local_f_linear_values", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 98}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19623, "scanner": "repobility", "fingerprint": "034e86bc779adc654e168d8e6b552f85", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_grad_linear_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19622, "scanner": "repobility", "fingerprint": "7e2b504d21285388b07f74656e49ab4f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_linear_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19621, "scanner": "repobility", "fingerprint": "4ddfab6c3a8de361acc7d4693e6b6543", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_sample_closest_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19620, "scanner": "repobility", "fingerprint": "3d1d58a745c7f96e2a7743b2d5a94ec9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_lookup_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19619, "scanner": "repobility", "fingerprint": "81f53753bd768772b125b1f4e1f8126f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_marching_cubes_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_marching_cubes.py"}, "region": {"startLine": 357}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19618, "scanner": "repobility", "fingerprint": "674033b47c1be8e4f05108726c036022", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_marching_cubes_nonuniform", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_marching_cubes.py"}, "region": {"startLine": 162}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19617, "scanner": "repobility", "fingerprint": "ab96d711a8e7a4eb09886c912b66ea44", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_point_codegen_adjoints_with_select", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh_query_point.py"}, "region": {"startLine": 966}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19616, "scanner": "repobility", "fingerprint": "b529cb458719f79a7311668798918f1b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_furthest_point", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh_query_point.py"}, "region": {"startLine": 728}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19615, "scanner": "repobility", "fingerprint": "6b451722a69c8dfea9b3b38937b61758", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_codegen_adjoints_with_select", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh_query_ray.py"}, "region": {"startLine": 720}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19614, "scanner": "repobility", "fingerprint": "a685ec9a03df081243b05fb9a9191b6b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_ray_and_groups", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh_query_ray.py"}, "region": {"startLine": 518}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19613, "scanner": "repobility", "fingerprint": "ddec909334590cab9a60d5a8910254d4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh.py"}, "region": {"startLine": 436}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19612, "scanner": "repobility", "fingerprint": "ebf63850c1d30fec2142e2f680c828c3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_refit_graph", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh.py"}, "region": {"startLine": 353}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19611, "scanner": "repobility", "fingerprint": "8aef7441d34c8a49cc3744a8bb5e3525", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_grouped_mesh_query_ray", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh.py"}, "region": {"startLine": 261}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19610, "scanner": "repobility", "fingerprint": "0888c1fbd5ccd20f162a6c2ce9c2393b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_ray", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh.py"}, "region": {"startLine": 223}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19609, "scanner": "repobility", "fingerprint": "0c4216fe66ef4767214ff38844b6f39e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_point", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh.py"}, "region": {"startLine": 131}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19608, "scanner": "repobility", "fingerprint": "4d10133da0e54603ca0ee632aad86d04", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_aabb_codegen_adjoints_with_select", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh_query_aabb.py"}, "region": {"startLine": 599}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19607, "scanner": "repobility", "fingerprint": "af83e366d79d65abe961c5399e836f87", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mesh_query_aabb_count_overlap_with_checksum", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_mesh_query_aabb.py"}, "region": {"startLine": 280}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19606, "scanner": "repobility", "fingerprint": "9a1491e3251707dda29beb48c077ad3b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_tile_readback_v", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19605, "scanner": "repobility", "fingerprint": "a0ae89122531061f78c09eca6c1a7e86", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_tile_store_v", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19604, "scanner": "repobility", "fingerprint": "086e2d24fce9005616e2174d92908c20", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_tile_readback_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19603, "scanner": "repobility", "fingerprint": "014ee77a08b290674659b498e4d4a0d1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_tile_store_ws_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 73}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19602, "scanner": "repobility", "fingerprint": "095ae5173dc6996df814a57c931513dc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_tile_store_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19601, "scanner": "repobility", "fingerprint": "70a24360ad5beff57ca2f96134853e34", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_get_list_of_tiles", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19600, "scanner": "repobility", "fingerprint": "52726ad69d7ffc4d6217227aea48b1bb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_readback_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19599, "scanner": "repobility", "fingerprint": "b905ce487f2068d560cf64adb5840a89", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_volume_store_f", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/geometry/test_volume_write.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19598, "scanner": "repobility", "fingerprint": "64e75b6112d95e9b2faf53532f88dd91", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_skew", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 1215}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19597, "scanner": "repobility", "fingerprint": "b01d89654399727513be33d3d4f90edb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_eig", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 1103}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19596, "scanner": "repobility", "fingerprint": "de210c74df53da1219d6adee79a8467d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_qr", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 991}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19595, "scanner": "repobility", "fingerprint": "be241359c9d0b78fa2c51f9286f9a20b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_svd_2D", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 843}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19594, "scanner": "repobility", "fingerprint": "9d9b5281d76cac30469dd980c67fc36a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_svd", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 724}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19593, "scanner": "repobility", "fingerprint": "fb22bab6a1fae519731917a763810723", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_inverse", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 554}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19592, "scanner": "repobility", "fingerprint": "506a6353caa562588a9c6a971ea24a58", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_determinant", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 361}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19591, "scanner": "repobility", "fingerprint": "0de0160b9301742ff2faee0e6062b344", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_subtraction", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 240}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19590, "scanner": "repobility", "fingerprint": "55232acdf54fa3e5994aca2119f4a8a6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matmul", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 169}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19589, "scanner": "repobility", "fingerprint": "5a7a4d287dea0d373d830b9d15913e58", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_negation", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat.py"}, "region": {"startLine": 80}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19588, "scanner": "repobility", "fingerprint": "ab5efc1b239ff908c3ea9d98165bdd75", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_conversions", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_basics.py"}, "region": {"startLine": 296}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19587, "scanner": "repobility", "fingerprint": "485055b9835215dc0db553bd63471b9f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_equivalent_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_basics.py"}, "region": {"startLine": 262}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19586, "scanner": "repobility", "fingerprint": "8af29f19a6202a54888b50725b3ca860", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_equality", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_basics.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19585, "scanner": "repobility", "fingerprint": "221789ba93d07504048c5ef61b828ab3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_basics.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19584, "scanner": "repobility", "fingerprint": "f4d025971305d04f1665fe6023de7d32", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_arrays", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_basics.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19583, "scanner": "repobility", "fingerprint": "86650de488f158d723f8c57d7f22d054", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_anon_type_instance", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 745}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19582, "scanner": "repobility", "fingerprint": "eb880a8f21fcfc64febfecc65807e5f8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_identity", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 715}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19581, "scanner": "repobility", "fingerprint": "e4e3d14969282c16cb51a69f349c680d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_quat_constructor", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 617}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19580, "scanner": "repobility", "fingerprint": "d6e1eea76b94ff295a49a524ff6043d7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matrix_constructor_value_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 604}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19579, "scanner": "repobility", "fingerprint": "e024d237b352c22bc137295d58b4ebe1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matrix_from_vecs", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 546}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19578, "scanner": "repobility", "fingerprint": "6f6f57f91b8b2aac8fa9f7b770ad8a49", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors_constant_shape", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 537}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19577, "scanner": "repobility", "fingerprint": "1c40b7ef2bdfca7bbd6c7f3f58d524e3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors_default_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 512}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19576, "scanner": "repobility", "fingerprint": "e835ad0b0d751c4b153e6707519e8a78", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors_explicit_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 490}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19575, "scanner": "repobility", "fingerprint": "6a4dd905cf197586e09be9573e4bdfc2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_diag", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_constructors.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19574, "scanner": "repobility", "fingerprint": "b4653ddf61111a70c1431b76e362e223", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mat_slicing_assign_backward", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_assign_copy.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19573, "scanner": "repobility", "fingerprint": "41a0c20d33fedf2412f697059f7b961d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matrix_assign_copy", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_assign_copy.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19572, "scanner": "repobility", "fingerprint": "26e5d36772018119fda310982e2010c5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mat_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_assign_copy.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19571, "scanner": "repobility", "fingerprint": "c13a09c833594c3c8d3f7680d1977687", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cw_division", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_elementwise_ops.py"}, "region": {"startLine": 394}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19570, "scanner": "repobility", "fingerprint": "c258b8748a26fba4edc667fc588ef8ec", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cw_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_elementwise_ops.py"}, "region": {"startLine": 304}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19569, "scanner": "repobility", "fingerprint": "3ead54ed11c216621d76e21397b9ea58", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_division", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_elementwise_ops.py"}, "region": {"startLine": 224}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19568, "scanner": "repobility", "fingerprint": "d44e0c26f27739a1c671418c40acc2d8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_addition", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_elementwise_ops.py"}, "region": {"startLine": 136}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19567, "scanner": "repobility", "fingerprint": "ea850c1f50d9ae6907933dcb24c3a1d1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_elementwise_ops.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19566, "scanner": "repobility", "fingerprint": "b49c03908933930acbbe4956219cc84e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors_default_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_lite.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19565, "scanner": "repobility", "fingerprint": "a8b36f7f23b7dc769d71258ca1f2cc40", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors_explicit_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_lite.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19564, "scanner": "repobility", "fingerprint": "c491db8230ca6c51f512ead422837c44", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matrix_constructor_value_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_lite.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19563, "scanner": "repobility", "fingerprint": "c68639b54bdf52dff239d87e02be7c72", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_trace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_linalg.py"}, "region": {"startLine": 606}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19562, "scanner": "repobility", "fingerprint": "61d5c69502a784350f5e67d49d110ef5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_ddot", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_linalg.py"}, "region": {"startLine": 532}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19561, "scanner": "repobility", "fingerprint": "b7acf4028ed1111520be282d452713b9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transpose", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_linalg.py"}, "region": {"startLine": 450}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19560, "scanner": "repobility", "fingerprint": "6a72b1bcbb94fe5ed587d4fbbadd3a1f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_outer_product", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_linalg.py"}, "region": {"startLine": 350}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19559, "scanner": "repobility", "fingerprint": "39fda7a67f0dc07db6174213d3b8ee96", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matmat_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_linalg.py"}, "region": {"startLine": 233}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19558, "scanner": "repobility", "fingerprint": "60109270083af782853e25c47672ab23", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vecmat_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_linalg.py"}, "region": {"startLine": 126}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19557, "scanner": "repobility", "fingerprint": "2a37c758b7570d40e1b3f6a2dd1b8bb1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matvec_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/matrix/test_mat_linalg.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19556, "scanner": "repobility", "fingerprint": "867f987a97ed4790b01c7110716d280e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spinlock_counter_4d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19555, "scanner": "repobility", "fingerprint": "07853ea8622447ad88b2e4f891e0ed44", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spinlock_counter", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 201}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19554, "scanner": "repobility", "fingerprint": "a7e7aa07e56c87680680c77560d5de1f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spinlock_counter_3d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 151}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19553, "scanner": "repobility", "fingerprint": "daaf08cf58df001246636a7ee87cd3a4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spinlock_counter_2d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19552, "scanner": "repobility", "fingerprint": "269568aff9587c800d1b6849fc2b386c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spinlock_counter_1d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19551, "scanner": "repobility", "fingerprint": "c1ae95ffb0f3573c3b374702c7361417", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_cas_4d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 218}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19550, "scanner": "repobility", "fingerprint": "07e3f36315739fe462c4b005d00b62a3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_cas_3d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19549, "scanner": "repobility", "fingerprint": "1b090b37e9eacfd87d6deed2a66daf8d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_cas_2d", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19548, "scanner": "repobility", "fingerprint": "d532a02d6654f55cfe8d2fc50d7392e3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_cas", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_cas.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19547, "scanner": "repobility", "fingerprint": "6a9afed5b1ba347f5f2daa90dd815205", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_force_load_single_module", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_module_parallel_load.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19546, "scanner": "repobility", "fingerprint": "33449a884c2d5c5c6cd6a2aa2c5fb25c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_force_load_config_none", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_module_parallel_load.py"}, "region": {"startLine": 104}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19545, "scanner": "repobility", "fingerprint": "1d334ff864f12628402a87225eba6c8b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_force_load_config_default", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_module_parallel_load.py"}, "region": {"startLine": 91}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19544, "scanner": "repobility", "fingerprint": "db217990c569c21a0baef29651966a28", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_force_load_parallel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_module_parallel_load.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19543, "scanner": "repobility", "fingerprint": "db3be1e8323adcf2c667daca8bca30e1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_force_load_serial", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_module_parallel_load.py"}, "region": {"startLine": 79}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19542, "scanner": "repobility", "fingerprint": "b45352b9a2da6013b5c42f35c3c2d5dc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexedarray_fill_struct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_indexedarray.py"}, "region": {"startLine": 1009}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19541, "scanner": "repobility", "fingerprint": "e5695a2a1a2708e74fc6d7b4021b8d2c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexedarray_fill_matrix", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_indexedarray.py"}, "region": {"startLine": 849}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19540, "scanner": "repobility", "fingerprint": "05d542ac08bd9a5f5dd2fa4782aff059", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexedarray_fill_vector", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_indexedarray.py"}, "region": {"startLine": 703}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19539, "scanner": "repobility", "fingerprint": "762d7278e50cc8690df19c1fc2411133", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexedarray_fill_scalar", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_indexedarray.py"}, "region": {"startLine": 631}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19538, "scanner": "repobility", "fingerprint": "fafc77fc33961fdf5b2ac376f97be547", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexedarray_generics", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_indexedarray.py"}, "region": {"startLine": 481}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19537, "scanner": "repobility", "fingerprint": "ac5875adbeca343f99a1591a25019b21", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexedarray_shape", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_indexedarray.py"}, "region": {"startLine": 318}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19536, "scanner": "repobility", "fingerprint": "8931c5a98cd7350749f8f599b3006eed", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_reload.py"}, "region": {"startLine": 153}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19535, "scanner": "repobility", "fingerprint": "bddb8419457f55d0a0d6e680e5a5e888", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_reload_references", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_reload.py"}, "region": {"startLine": 191}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19534, "scanner": "repobility", "fingerprint": "cf2cc9b314e04fbeb51781918cd5af78", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_reload_class", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_reload.py"}, "region": {"startLine": 152}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19533, "scanner": "repobility", "fingerprint": "f7862bac5b27f863b38b02c345f67b2b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_reload", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_reload.py"}, "region": {"startLine": 132}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19532, "scanner": "repobility", "fingerprint": "be120c8f9adc7349eb08019499b2b804", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_redefine_command", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_reload.py"}, "region": {"startLine": 65}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19531, "scanner": "repobility", "fingerprint": "ed148cbe5ec71f15bbc5912609fb33ad", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_redefine", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_reload.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19530, "scanner": "repobility", "fingerprint": "085a82214fea7b1c8331b061bf2eb9fd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_struct_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19529, "scanner": "repobility", "fingerprint": "0382b222d7c163416bb8d70ac7351bec", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_capture_if", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 159}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19528, "scanner": "repobility", "fingerprint": "ba3c2de1b5f8c2a4ef0ece8e608fe295", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_capture_if_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 145}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19527, "scanner": "repobility", "fingerprint": "31f51a243d2317dae3fbdec27593e968", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_return_annotation", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19526, "scanner": "repobility", "fingerprint": "9ea80d5e817650e203455dc1fa8d0aa8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_return_annotation_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19525, "scanner": "repobility", "fingerprint": "68aab2cabab371bf04e7a793de109642", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_return", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19524, "scanner": "repobility", "fingerprint": "f2eb094bb895f651ba6670b228f25626", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_return_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19523, "scanner": "repobility", "fingerprint": "f8f462b87d70bc7c73c17cff2351bfd5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_arg", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19522, "scanner": "repobility", "fingerprint": "765fd2c0d4e8d82775580b2d02a68f06", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_arg_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19521, "scanner": "repobility", "fingerprint": "f5fc269e540ee282fa66e59625838c2e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_zeros", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fixedarray.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19520, "scanner": "repobility", "fingerprint": "66f4f1287e8a46a78a2940c4bbd749ad", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tape_nested_struct_subscript", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tape.py"}, "region": {"startLine": 270}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19519, "scanner": "repobility", "fingerprint": "edf46760a8bbff0c0c2ff3a004ff07d0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tape_struct_subscript", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tape.py"}, "region": {"startLine": 244}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19518, "scanner": "repobility", "fingerprint": "e3eacccaed5c1f26dcc5c7c41dc2d782", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tape_nested_struct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tape.py"}, "region": {"startLine": 164}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19517, "scanner": "repobility", "fingerprint": "e143893b60348132f31271c4545ee6d7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tape_zero_multiple_outputs", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tape.py"}, "region": {"startLine": 131}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19516, "scanner": "repobility", "fingerprint": "47fbbe1bcbc43f3e1773740f595bd6b8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tape_dot_product", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tape.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19515, "scanner": "repobility", "fingerprint": "d9bc28606ea27ad302e0515ef0623e3e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tape_mul_constant", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tape.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19514, "scanner": "repobility", "fingerprint": "a49c6ff62fd5d284380285e5d16aa0ce", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fabricarray_new_del", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fabricarray.py"}, "region": {"startLine": 964}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19513, "scanner": "repobility", "fingerprint": "a8f728267f610be401247d600a6c0c97", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fabricarray_indexing_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fabricarray.py"}, "region": {"startLine": 842}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19512, "scanner": "repobility", "fingerprint": "7673555bfec18f73fb6a2a4679499a2b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fabricarray_fill_matrix", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fabricarray.py"}, "region": {"startLine": 670}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19511, "scanner": "repobility", "fingerprint": "4a08711d6e93fd8068ca1e63d4c8fc99", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fabricarray_fill_vector", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fabricarray.py"}, "region": {"startLine": 529}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19510, "scanner": "repobility", "fingerprint": "1172cb91ede7fdf358a0f7578957ac7e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fabricarray_fill_scalar", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fabricarray.py"}, "region": {"startLine": 463}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19509, "scanner": "repobility", "fingerprint": "5d9f72c810f136674e1948cf5fbb3b76", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_create_generic_func_simple", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 479}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19508, "scanner": "repobility", "fingerprint": "c050fb470885b058b0b15c4adc009e30", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_create_struct_simple_ctor", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 410}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19507, "scanner": "repobility", "fingerprint": "6238fa72bef03396ec13644172e05b97", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_create_struct_simple_args", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 388}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19506, "scanner": "repobility", "fingerprint": "54705b39933d2f112f6c12045fa6416d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_create_func_simple", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 359}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19505, "scanner": "repobility", "fingerprint": "57fe298dd4a92bd18841f1689ea62596", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_global_generic_func_redefine", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 298}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19504, "scanner": "repobility", "fingerprint": "84757f28d4ffc47be3f6379cb58ca9a4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_global_overload_secondary_redefine", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 217}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19503, "scanner": "repobility", "fingerprint": "c72f997cad400bd0f7d25e6ee583916e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_global_overload_primary_redefine", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 180}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19502, "scanner": "repobility", "fingerprint": "126fe3a8880519b7cc084c733ad8d000", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_global_struct_ctor_redefine", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 143}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19501, "scanner": "repobility", "fingerprint": "e1c44938891b2fb73c751d7d8a5380fd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_global_struct_args_redefine", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 111}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19500, "scanner": "repobility", "fingerprint": "f538d7abf1054c5613134653aecde37d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_global_func_redefine", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen_instancing.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19499, "scanner": "repobility", "fingerprint": "a241d5d224aaa2bafc9e6dc04f297bed", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_finite", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_verify_fp.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19498, "scanner": "repobility", "fingerprint": "48b4ed89d3e8c82875e5f8093c9e68d8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_bitwise_matrix", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_bitwise.py"}, "region": {"startLine": 147}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19497, "scanner": "repobility", "fingerprint": "3a5cfa3479864337d7524cdc405e7089", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_bitwise_matrix_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_bitwise.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19496, "scanner": "repobility", "fingerprint": "ffdb3d485d7f62293493ccc9072c02a5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_bitwise_vector", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_bitwise.py"}, "region": {"startLine": 88}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19495, "scanner": "repobility", "fingerprint": "c2e958425306a94c246174d2e7e0d33b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_bitwise_vector_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_bitwise.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19494, "scanner": "repobility", "fingerprint": "7111a1c1659ee106abac5b05e9bef514", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_bitwise_scalar", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_bitwise.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19493, "scanner": "repobility", "fingerprint": "aebdbf730b576f7712ca6466faab9bfa", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_bitwise_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic_bitwise.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19492, "scanner": "repobility", "fingerprint": "2d64f63f21ee236125fe3e82737bf44e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_addition", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 1536}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19491, "scanner": "repobility", "fingerprint": "bdf7340a6eb21d8614f4ecfc5136a41e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cw_division", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 1368}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19490, "scanner": "repobility", "fingerprint": "9d8a0cb83f69473432fc547ab6ed1e10", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_division", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 1212}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19489, "scanner": "repobility", "fingerprint": "060ec8c33938fa4cb0278b51001f8e82", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cw_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 1067}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19488, "scanner": "repobility", "fingerprint": "15d640d5573cc5fbad569cc5d61d2d11", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_multiplication_rightmul", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 935}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19487, "scanner": "repobility", "fingerprint": "8376e729e80e83838b4be1f3df5f65dd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 803}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19486, "scanner": "repobility", "fingerprint": "5fa13e6761a17f05642e9349668328dd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_equality", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 681}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19485, "scanner": "repobility", "fingerprint": "9fde97ea6914d7d14f7827c536b410a9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_indexing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 568}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19484, "scanner": "repobility", "fingerprint": "beb4499cada40539177e79bec2b523cd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_anon_type_instance", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 445}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19483, "scanner": "repobility", "fingerprint": "b122f63cbd7e27e2e2be76bcdec2a7f0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_arrays", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_scalar_ops.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19482, "scanner": "repobility", "fingerprint": "5389fe1832c89da2b029620cb91a2316", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_arg_types", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 209}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19481, "scanner": "repobility", "fingerprint": "df69746fe0b780a5d331211fa2774b7d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_array", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 200}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19480, "scanner": "repobility", "fingerprint": "c35386710c482b8b35cebf84082a71cc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_array", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 193}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19479, "scanner": "repobility", "fingerprint": "6920e3bb48c9510dd243a48ace554564", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_vector_constructor", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 112}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19478, "scanner": "repobility", "fingerprint": "a7f5ecb9df89c129ea13bfbec5afd1f5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transformation_constructor", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19477, "scanner": "repobility", "fingerprint": "97b94f0ae77758dea47130b0e466e4ed", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transform_multiply", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19476, "scanner": "repobility", "fingerprint": "4e5071c0562dd1e5b3229580ac98e19b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3_transform", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 76}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19475, "scanner": "repobility", "fingerprint": "dd17882bdc16d5942fddc83070680580", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3_arg", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19474, "scanner": "repobility", "fingerprint": "0409c6ebbb41c17ff4c2f7f36d638c83", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec2_transform", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 57}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19473, "scanner": "repobility", "fingerprint": "9fdd54605b0dc9f6e29b5d81d081a6a5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec2_arg", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_ctypes.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19472, "scanner": "repobility", "fingerprint": "8a130cdc80ace8e86046a215138273a2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_return_type", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 249}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19471, "scanner": "repobility", "fingerprint": "a38168123770419c44969436d4e3da21", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_recompile_snippet", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 204}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19470, "scanner": "repobility", "fingerprint": "aa114acc12c9ffac0468c16810c84f70", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_replay_simplification", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 176}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19469, "scanner": "repobility", "fingerprint": "66638bb4e268d34ebc7ec3e44338a62f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_custom_replay_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 137}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19468, "scanner": "repobility", "fingerprint": "1466c35d04c077368315bac9f4427868", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cpu_snippet", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 109}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19467, "scanner": "repobility", "fingerprint": "75c622200088ecd2a92dfe8f9a59e8b9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_basic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_snippet.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19466, "scanner": "repobility", "fingerprint": "f5d3c652d192be1f96ebbde4e50f05da", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_array_extract", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 933}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19465, "scanner": "repobility", "fingerprint": "e5898c4f2c5a236de7739e82216f646f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 896}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19464, "scanner": "repobility", "fingerprint": "7278704f1bf83a68f4598ae84189dbea", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_extract", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 855}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19463, "scanner": "repobility", "fingerprint": "9c3edd626013784c75ed58f67aa26721", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_mutation", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 781}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19462, "scanner": "repobility", "fingerprint": "3a34484ab4757f4223d5f8adf2359799", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_crossproduct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 685}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19461, "scanner": "repobility", "fingerprint": "319ebf622e2bd745072e2e37a9c1323a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_normalize", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 478}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19460, "scanner": "repobility", "fingerprint": "84470772b84e0db756e4fb384e1efd98", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_length", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 356}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19459, "scanner": "repobility", "fingerprint": "74bcd0fcff6a290f1ed9b57231f5693e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_subtraction", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 219}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19458, "scanner": "repobility", "fingerprint": "f89e394728dc95006ccd6d0c1c9e70bf", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_subtraction_unsigned", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 188}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19457, "scanner": "repobility", "fingerprint": "903f7cad673842317029ff3fd1838eb6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_negation", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec.py"}, "region": {"startLine": 65}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19456, "scanner": "repobility", "fingerprint": "13c2604c15aff3cd8cb71131e6ba13ed", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bool_vec_assign_copy", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_assign_copy.py"}, "region": {"startLine": 118}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19455, "scanner": "repobility", "fingerprint": "8b2ad6fb7d6a51ba97ebe64957cef62b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_slicing_assign_backward", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_assign_copy.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19454, "scanner": "repobility", "fingerprint": "082677b1bb59bd6b49d08cf31b307214", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_assign_copy", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_assign_copy.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19453, "scanner": "repobility", "fingerprint": "4e5a360bff1b1178ad0d995198aed564", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_assign_copy.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19452, "scanner": "repobility", "fingerprint": "0f1ccf9b6d8174c969031e5fc81c5e65", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fast_math_cpu", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fast_math.py"}, "region": {"startLine": 278}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19451, "scanner": "repobility", "fingerprint": "f79095407155efa26be2072454c0581b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fast_math_cuda", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fast_math.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19450, "scanner": "repobility", "fingerprint": "ef8d42a71c1781d5f02942c668a09bd8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fast_math_disabled", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fast_math.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19449, "scanner": "repobility", "fingerprint": "03b6f12b220375b635863cb241c62159", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_pow", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fast_math.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19448, "scanner": "repobility", "fingerprint": "932165584d38f7ad8c2c1c6fbeb51391", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_wrapper", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/unittest_utils.py"}, "region": {"startLine": 325}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19447, "scanner": "repobility", "fingerprint": "3a7256f800ad93a7b5907448f71909e0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/unittest_utils.py"}, "region": {"startLine": 293}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19446, "scanner": "repobility", "fingerprint": "34514c9535ecf625525575d2db6a5b87", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/unittest_utils.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19445, "scanner": "repobility", "fingerprint": "18a106d26b4893857c38d2e16b311bbf", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_range_dynamic_sum", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19444, "scanner": "repobility", "fingerprint": "cc1d1dc3de925b6c8802d7204f8c08b5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_range_static_sum", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19443, "scanner": "repobility", "fingerprint": "3dbaa579751b65e7425c555da5a5cc55", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_dynamic_reassign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 90}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19442, "scanner": "repobility", "fingerprint": "af114a4135d7d722f66dca09d417162b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_reassign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 79}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19441, "scanner": "repobility", "fingerprint": "74accca02e7e396a8f43f52eda5b6f4e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_dynamic_for_inplace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19440, "scanner": "repobility", "fingerprint": "ec469461bbc9195c19aa17e555bf1082", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_dynamic_for_rename", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19439, "scanner": "repobility", "fingerprint": "ef646dfe5c6c3c66e33a626a21f4ff8e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constant", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19438, "scanner": "repobility", "fingerprint": "5435429124a52e812d7da27959f8bd7d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_inplace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19437, "scanner": "repobility", "fingerprint": "0c84920caafcf69e093806c06144fbab", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_rename", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19436, "scanner": "repobility", "fingerprint": "cedf6a0fd2d226b998e7a2a67f04b4a5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_expect", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_codegen.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19435, "scanner": "repobility", "fingerprint": "d0e6742de135f3bc7a5d58f03acd664f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fp16_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fp16.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19434, "scanner": "repobility", "fingerprint": "fde98143e0de0a55bfd3000a992396f2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fp16_kernel_parameter", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fp16.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19433, "scanner": "repobility", "fingerprint": "29be0c774f3fc9c14db1fab9b802b8b9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fp16_conversion", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fp16.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19432, "scanner": "repobility", "fingerprint": "c80b327b3f249912212ac13561179c21", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_segmented_sort_pairs_empty", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_utils.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19431, "scanner": "repobility", "fingerprint": "896fe7d43f6399f951f7ac1fdc991576", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_radix_sort_pairs_empty", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_utils.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19430, "scanner": "repobility", "fingerprint": "632c4073cc12f87bc6d6f2dda9cf7b6b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_segmented_sort_pairs", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_utils.py"}, "region": {"startLine": 88}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19429, "scanner": "repobility", "fingerprint": "e8411cce85b1e24314ce8e0511a7470d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_radix_sort_pairs", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_utils.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19428, "scanner": "repobility", "fingerprint": "be139acd465f15f75949b9716f1cdf55", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_scan_empty", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_utils.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19427, "scanner": "repobility", "fingerprint": "2abc48b45140c23c8831bb9710593a7f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_body", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_sparse.py"}, "region": {"startLine": 741}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19426, "scanner": "repobility", "fingerprint": "f607a933df24cb736c1a58fb9b90e97e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bsr_multiply_deep", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_sparse.py"}, "region": {"startLine": 631}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19425, "scanner": "repobility", "fingerprint": "8546a6c04f0ff9db286a123c7b1cc279", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bsr_assign_masked", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_sparse.py"}, "region": {"startLine": 327}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19424, "scanner": "repobility", "fingerprint": "03c26f7325228b06d49aee3d14136132", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_clamp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 965}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19423, "scanner": "repobility", "fingerprint": "1967885f7a9eaf10131506f412c95998", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_interp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 834}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19422, "scanner": "repobility", "fingerprint": "68ec8616d3e7efd6276295d6f4267aa6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_float_to_int", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 778}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19421, "scanner": "repobility", "fingerprint": "6717492f25e934ab76eca931f914dc0f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_special_funcs_2arg", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 711}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19420, "scanner": "repobility", "fingerprint": "42d49d4ea9d282341991c202413be564", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_special_funcs", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 458}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19419, "scanner": "repobility", "fingerprint": "568a0d06272082e99e03db27f5c76354", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_binary_ops", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 253}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19418, "scanner": "repobility", "fingerprint": "18062422e3b4fdbb02e8e55b26c5b47a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_nonzero", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 207}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19417, "scanner": "repobility", "fingerprint": "71652baebd19fe2e4bb51e433ecbf72c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unary_ops", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 91}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19416, "scanner": "repobility", "fingerprint": "e5afd8a252efcf7175f9c3947a2f162f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_arrays", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_arithmetic.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19415, "scanner": "repobility", "fingerprint": "14ff06f1bdc90ba11f4b6bf8d1bb2ca0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19414, "scanner": "repobility", "fingerprint": "0e5be5951d3dd98f9cfb60d9e39bf25b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_return_value", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic.py"}, "region": {"startLine": 112}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19413, "scanner": "repobility", "fingerprint": "fe3f546d32a4291814138039ed158d16", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19412, "scanner": "repobility", "fingerprint": "6ecce1f411ed7b4df15fd2ef68fc4c44", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19411, "scanner": "repobility", "fingerprint": "132164dc45e6e01858ff019b9e9f9b1d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_max_supported_dtypes", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic.py"}, "region": {"startLine": 212}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19410, "scanner": "repobility", "fingerprint": "c78c6b7c7c3379aadbc676031dfcb968", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_min_supported_dtypes", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic.py"}, "region": {"startLine": 201}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19409, "scanner": "repobility", "fingerprint": "f88024f867b64db8c9ebf737e46abca8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_atomic_add_supported_dtypes", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_atomic.py"}, "region": {"startLine": 186}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19408, "scanner": "repobility", "fingerprint": "e6c9d729512d6e4c7abeb7db448c8e51", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_static_accessors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_enum.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19407, "scanner": "repobility", "fingerprint": "ad6c2e37e8dd55a426499f225dbb2ab4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_alternative_accessors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_enum.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19406, "scanner": "repobility", "fingerprint": "b7d59bd56589169e6fa98d13b537a956", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_intflag_ints", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_enum.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19405, "scanner": "repobility", "fingerprint": "4ca3ae16976abdb70138255ac23a0c8b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_intenum_ints", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_enum.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19404, "scanner": "repobility", "fingerprint": "e19d26280c7ad5ecd8c87f3ef22a3817", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_module_lite_load", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_modules_lite.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19403, "scanner": "repobility", "fingerprint": "fb4d79da29e66af8a1cc39af08c4a52c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_user_func_return_multiple_values", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 206}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19402, "scanner": "repobility", "fingerprint": "c6fab00448c77cb633bdc9fad9087d5f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_builtin_shadowing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 154}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19401, "scanner": "repobility", "fingerprint": "d9ae669a8c22d4f6dd86eb3a058cda03", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_defaults", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19400, "scanner": "repobility", "fingerprint": "06c08c036b425e711a396c248419d650", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_multi_valued_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19399, "scanner": "repobility", "fingerprint": "337eff1ee9adcd46a6546526031b0e0b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_return_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19398, "scanner": "repobility", "fingerprint": "f628cd40767c3954bd078487816af2f6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_return_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19397, "scanner": "repobility", "fingerprint": "9a8135b5fe792efe075ac37f0c13f788", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19396, "scanner": "repobility", "fingerprint": "de42cdb33c9cd0a2c554a480c27a1e67", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_func_closure_capture", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19395, "scanner": "repobility", "fingerprint": "a8d52364ab2e99d0dbb6f5f567776cf0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_override_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19394, "scanner": "repobility", "fingerprint": "9a490d34d985943245be1e5bc7e5dc40", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_overload_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_func.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19393, "scanner": "repobility", "fingerprint": "dde2df9c5d774fdff295015b16bbffd2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_sample_cdf", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_rand.py"}, "region": {"startLine": 162}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19392, "scanner": "repobility", "fingerprint": "b236342e9c8573fdf8d26ac2669123d2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_rand", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_rand.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19391, "scanner": "repobility", "fingerprint": "7d5b5488bd0d8abb821c9f14bab93b40", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_rand.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19390, "scanner": "repobility", "fingerprint": "e866f4b7c55796a2547923b089ff8b74", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_quat_slicing_assign_backward", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat_assign_copy.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19389, "scanner": "repobility", "fingerprint": "0471be5cd8a4a9ad45b6da4572a23522", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_quat_assign_copy", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat_assign_copy.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19388, "scanner": "repobility", "fingerprint": "c33aa509e28039d86603d96a95dbb46a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_quat_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat_assign_copy.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19387, "scanner": "repobility", "fingerprint": "10eae6edc988cc2859293529cd6d2c86", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_division", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 708}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19386, "scanner": "repobility", "fingerprint": "883996ab921a1370a55b154f24cc418d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 625}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19385, "scanner": "repobility", "fingerprint": "4cc22ec7b6ce32587dce400e131a48c7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_subtraction", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 561}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19384, "scanner": "repobility", "fingerprint": "54fdbe38c0a546016ff4a7459b50de09", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_addition", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 498}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19383, "scanner": "repobility", "fingerprint": "0982f51782f80ead7c4e55394e344022", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_normalize", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 416}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19382, "scanner": "repobility", "fingerprint": "0cef430cbe0070dec9bd4530b0e4d141", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_length", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 368}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19381, "scanner": "repobility", "fingerprint": "1cbce8c244276e2e0e45ce98720e7980", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_dotproduct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 326}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19380, "scanner": "repobility", "fingerprint": "e3fa31e4f3f272225deb7606a6c67205", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_inverse", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 265}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19379, "scanner": "repobility", "fingerprint": "a75425499f52a762bd4c79ad7abebaf2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_casting_constructors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 162}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19378, "scanner": "repobility", "fingerprint": "e939d17d0e8087674904e1fbbc74380b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_quat.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19377, "scanner": "repobility", "fingerprint": "388b824ef7c9d0d393b54113992236be", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_smoothstep", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_smoothstep.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19376, "scanner": "repobility", "fingerprint": "50305a5603063469f14102c59ae1e3ad", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_gmres", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_linear_solvers.py"}, "region": {"startLine": 170}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19375, "scanner": "repobility", "fingerprint": "ec1cd1da191f3c59fa9a14f76d893f4f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bicgstab", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_linear_solvers.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19374, "scanner": "repobility", "fingerprint": "80529a51da2f80f52c2622174eb05ffc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cr", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_linear_solvers.py"}, "region": {"startLine": 127}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19373, "scanner": "repobility", "fingerprint": "d3066506f870115cc0d9e8530e676f9a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cg", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_linear_solvers.py"}, "region": {"startLine": 110}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19372, "scanner": "repobility", "fingerprint": "a7860481c00728f29501e551f1650294", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_call_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 209}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19371, "scanner": "repobility", "fingerprint": "c484c2ae0ba371790d55049b4df2056a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 190}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19370, "scanner": "repobility", "fingerprint": "1de805f99fc69479dc680a1e4f0f602e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_intermediate", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 176}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19369, "scanner": "repobility", "fingerprint": "a747f43de082910954be3b7d00045f62", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_rvalue", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19368, "scanner": "repobility", "fingerprint": "748a084491d59f054d2edc99a7c7dfe6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unary", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19367, "scanner": "repobility", "fingerprint": "e4a38e60bb68805b29eeefb34cc9db13", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_lookup2", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19366, "scanner": "repobility", "fingerprint": "f0ee8128f0cacdb7d33f12fd0e1e4a68", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_lookup", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19365, "scanner": "repobility", "fingerprint": "589e481a5a6a19cce68643aba052db56", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_rmw_array", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lvalue.py"}, "region": {"startLine": 19}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19364, "scanner": "repobility", "fingerprint": "e6f50e12d61dc1a4fe827fa93c174430", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_copy_adjoint", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_copy.py"}, "region": {"startLine": 251}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19363, "scanner": "repobility", "fingerprint": "03a0d2f2f22d28fad39276302ad90eda", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_copy_large_stride", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_copy.py"}, "region": {"startLine": 212}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19362, "scanner": "repobility", "fingerprint": "387043671eb6ddeeef5b36eb4a06ddd0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_smooth_normalize", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_math.py"}, "region": {"startLine": 149}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19361, "scanner": "repobility", "fingerprint": "1073fb178002a7bdb9863d910b18251c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_norm", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_math.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19360, "scanner": "repobility", "fingerprint": "8c4cb02a9fcb6acb12bccedcfc24af64", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec_norm_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_math.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19359, "scanner": "repobility", "fingerprint": "f4fa18cdb604850d0a2debf40d800aad", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_erf_math", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_math.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19358, "scanner": "repobility", "fingerprint": "939b5476102328e20d6a6bfcd5cc5def", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_math", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_math.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19357, "scanner": "repobility", "fingerprint": "2e6dac3a6d88686d725e1d669ff66704", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3_int_literals_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 135}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19356, "scanner": "repobility", "fingerprint": "7e02e5b0789f5d925f1af7def0554373", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3d_int_literals_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19355, "scanner": "repobility", "fingerprint": "8e74044e3974949e37bfb5d9f3242924", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transformd_precision_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19354, "scanner": "repobility", "fingerprint": "fcbc82cae68f33941f4e516c98843117", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_quatd_precision_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19353, "scanner": "repobility", "fingerprint": "7a5b57d89eaac5adcf9d25eada05955e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_mat22d_precision_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 90}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19352, "scanner": "repobility", "fingerprint": "89b3d4b560fcc6a77548b75dcfc8d213", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3h_int_literals_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19351, "scanner": "repobility", "fingerprint": "b8b54025290d9c42a4c8ccfdc7b40de2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3h_float_literals_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19350, "scanner": "repobility", "fingerprint": "1b97fca54f6cc9f68bad179d48ad775c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3_precision_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19349, "scanner": "repobility", "fingerprint": "d476f3a617b6349161027d6098e1aa62", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3d_element_by_element_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19348, "scanner": "repobility", "fingerprint": "5bfb603ffa9e91bd48f9c6dde796fcf7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vec3d_precision_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_constant_precision.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19347, "scanner": "repobility", "fingerprint": "4ab148d699ab0849aee3ab1a0cb19c16", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_intersect_tri", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_intersect.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19346, "scanner": "repobility", "fingerprint": "e10790889bc293fd256e0a171e429aab", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_quat_to_vec4_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 134}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19345, "scanner": "repobility", "fingerprint": "0b8f0e7ca3cd6333a84f3c5f8ee34862", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_matrix_slice_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19344, "scanner": "repobility", "fingerprint": "d18e8ed94e5219e0d8dcec5edee9ca1f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19343, "scanner": "repobility", "fingerprint": "601780e06fe0522344a4f8caa33a8632", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_vector_slice_negative_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19342, "scanner": "repobility", "fingerprint": "695f5cb23a7bea99b797d58dcd18aa08", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_vector_slice_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19341, "scanner": "repobility", "fingerprint": "94b4ddc403e43de0effceeb5b9ec23f9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_multiple_vecs_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19340, "scanner": "repobility", "fingerprint": "f9a534cdb9ae04cb51672a5b712a6183", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_vec_with_extra_args_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19339, "scanner": "repobility", "fingerprint": "a3db50bf8928308e9a32d1438c39c91a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_vec_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19338, "scanner": "repobility", "fingerprint": "ad36293372c1030ec5e180005da3d83e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_array_slice", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19337, "scanner": "repobility", "fingerprint": "56da62c0219a287e16c9551905a1a79b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_unpack_array_slice_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_unpack.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19336, "scanner": "repobility", "fingerprint": "22e6ce8c310e8625a8e0d2577e30f70e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transform_slicing_assign_backward", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial_assign_copy.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19335, "scanner": "repobility", "fingerprint": "1097bfee1e383a0fadd56db61e06a2ef", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transform_assign_copy", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial_assign_copy.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19334, "scanner": "repobility", "fingerprint": "91be9a2fb409c5f5adf55b2e39fcbb48", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transform_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial_assign_copy.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19333, "scanner": "repobility", "fingerprint": "0dc200a65bcf80df2d711a238cf9864c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_inner", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array_reduce.py"}, "region": {"startLine": 91}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19332, "scanner": "repobility", "fingerprint": "1aea44cf9ab107037950186ef46cc5a2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_sum", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array_reduce.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19331, "scanner": "repobility", "fingerprint": "a8f6a72cfec9427aa3cff666ede142de", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_sum", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array_reduce.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19330, "scanner": "repobility", "fingerprint": "722cc1188485c4ecb2c034e05d17f1a4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_sum_empty", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array_reduce.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19329, "scanner": "repobility", "fingerprint": "ded2ffc1d0457e5915b9cdec6a0e0f24", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bool_vec_assign", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_bool.py"}, "region": {"startLine": 215}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19328, "scanner": "repobility", "fingerprint": "b2ab971c0410fe28553d5220e672be15", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bool_mat_anonymous_typing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_bool.py"}, "region": {"startLine": 168}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19327, "scanner": "repobility", "fingerprint": "b89b7cc72b35eeed4b776b6d99d9c6e7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bool_vec_anonymous_typing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_bool.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19326, "scanner": "repobility", "fingerprint": "5866720089c1cb82bca062a45f854c3b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bool_constant_mat", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_bool.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19325, "scanner": "repobility", "fingerprint": "ca492571c9566350a2136ac957050e06", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bool_constant_vec", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_bool.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19324, "scanner": "repobility", "fingerprint": "0aafa033dd88b541f7e006100ccebede", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_boolean_literal", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 132}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19323, "scanner": "repobility", "fingerprint": "95c37bfdf5805f5adf116f743d2d26bb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_boolean_compound", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 118}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19322, "scanner": "repobility", "fingerprint": "dad6633d31ced5d9b87e84130cc8f741", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_boolean_or", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19321, "scanner": "repobility", "fingerprint": "cfbdb028a73f2f7f95997e07570e726b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_boolean_and", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19320, "scanner": "repobility", "fingerprint": "453c1e1474cc61e298c5cea287352f61", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_conditional_ifexp_constant_nested", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19319, "scanner": "repobility", "fingerprint": "0fd8348bb26e35c728ecd3e862726f0f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_conditional_ifexp_constant", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19318, "scanner": "repobility", "fingerprint": "82e13230a2e21e92849b3b9db4a7f564", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_conditional_ifexp_nested", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19317, "scanner": "repobility", "fingerprint": "6f5c3ba55621dc8fa9c11e5bfcfd9e4c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_conditional_ifexp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19316, "scanner": "repobility", "fingerprint": "dd5164c4692708db063ddf2312f6dc9a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_conditional_if_else_nested", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19315, "scanner": "repobility", "fingerprint": "3f20c9b57945c784a008ca64c01554fe", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_conditional_if_else", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_conditional.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19314, "scanner": "repobility", "fingerprint": "54b31e3ed8498ee79ffd57bb70b97ffd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_import_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_import.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19313, "scanner": "repobility", "fingerprint": "a4cffec69a20956317146e1d46539698", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_triangle_closest_point_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_triangle_closest_point.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19312, "scanner": "repobility", "fingerprint": "262a79f03ef54f82405ab518a52094f0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_to_bool", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 2079}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19311, "scanner": "repobility", "fingerprint": "f4cd6a435ca8482251bf3b93c3dbc197", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fill_slices", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 1045}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19310, "scanner": "repobility", "fingerprint": "053ccdf55d9566175f761dff484096bb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fill_struct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 958}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19309, "scanner": "repobility", "fingerprint": "7de3d9798d8fd960a4bf00aa67a7dbd5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fill_matrix", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 778}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19308, "scanner": "repobility", "fingerprint": "99e9ccf13385dbffa5937d6d4e7215bf", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fill_vector", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 639}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19307, "scanner": "repobility", "fingerprint": "cfaba76a26993c57789b4703604a31fc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_fill_scalar", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 574}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19306, "scanner": "repobility", "fingerprint": "453f181d67aed0569d80d234f40d947a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transpose", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 536}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19305, "scanner": "repobility", "fingerprint": "737bafe80830bf8556d5101564df7913", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_assign_adjoint", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 504}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19304, "scanner": "repobility", "fingerprint": "db51f25948f010e1c585a22afb52d134", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_clone_adjoint", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 489}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19303, "scanner": "repobility", "fingerprint": "f6210b9788cccfc509994e63330e84f7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_shape", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_array.py"}, "region": {"startLine": 231}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19302, "scanner": "repobility", "fingerprint": "c17b94e3bff722e260976ca5cba6e529", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_native_snippet_in_forward_with_custom_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 488}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19301, "scanner": "repobility", "fingerprint": "52d879270505758295bb1ced01a90150", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_native_snippet_in_forward_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 483}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19300, "scanner": "repobility", "fingerprint": "5690435890ace919dae5de1b20a8ec5c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_custom_grad_with_helper_dependency", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 410}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19299, "scanner": "repobility", "fingerprint": "37f15bc1e12e268d41bf906380091378", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_custom_grad_with_helper_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 405}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19298, "scanner": "repobility", "fingerprint": "7b3f3bffe1280196053831b2ad31b5c6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_nested_custom_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 333}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19297, "scanner": "repobility", "fingerprint": "64e7e14b29d0d40605e46de79d81ee1b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_nested_custom_grad_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 328}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19296, "scanner": "repobility", "fingerprint": "e0c50b8cdc38da20098754c4a23e3e5a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_custom_grad_no_return", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 230}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19295, "scanner": "repobility", "fingerprint": "c1f0c022f54d91c671b34312d650dfb6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_custom_import_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 180}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19294, "scanner": "repobility", "fingerprint": "d89e90595547e7c0ca4d5fb0597566c0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_custom_overload_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19293, "scanner": "repobility", "fingerprint": "2d80543512540fb85c091c06abf7c068", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_custom_replay_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad_customs.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19292, "scanner": "repobility", "fingerprint": "004a7253aa43430f84ed52c81b009c62", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_struct_default_attributes_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 427}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19291, "scanner": "repobility", "fingerprint": "8cb51a6cf82b100e627991a2426de7b1", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_return", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 389}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19290, "scanner": "repobility", "fingerprint": "6029313677aede725b93411f88c73fb2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_return_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 383}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19289, "scanner": "repobility", "fingerprint": "1d1f1e5726095e5caef1b01a7f139763", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_return_struct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 369}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19288, "scanner": "repobility", "fingerprint": "b4845e94e172a226ab75d2ee16b1df1a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_struct_math_conversions", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 339}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19287, "scanner": "repobility", "fingerprint": "59779048c48ccb287c2fa40880ba1160", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_struct_instantiate", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 302}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19286, "scanner": "repobility", "fingerprint": "4ce9df5836d75d4c0692b25ac6de8d46", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_nested_mat", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 247}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19285, "scanner": "repobility", "fingerprint": "867152a3846e17aa0b18bb8ca5a19918", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_uninitialized", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 172}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19284, "scanner": "repobility", "fingerprint": "7916f447538f42c4264386bfa6ffc8ff", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_empty", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 162}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19283, "scanner": "repobility", "fingerprint": "577c6c908e86e12088d3a3aa8d66f453", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_step", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_struct.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19282, "scanner": "repobility", "fingerprint": "dc3d665251fe5e3b429ea813c590695e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transform_scalar_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 703}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19281, "scanner": "repobility", "fingerprint": "3aa11605e9fbb6b78ce08c7f10200b15", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transform_indexing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 654}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19280, "scanner": "repobility", "fingerprint": "32c2a4eb52b4970e67407fd56ad0a5af", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_transform_constructors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 595}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19279, "scanner": "repobility", "fingerprint": "66e77b196dc3dd64473b5b177322fe03", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_top_bottom", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 526}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19278, "scanner": "repobility", "fingerprint": "a2b076fd5f04d5332d8b317f042fc25c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_cross", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 372}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19277, "scanner": "repobility", "fingerprint": "957be9f9f424ca582954535ef7fe3caa", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_dot", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 320}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19276, "scanner": "repobility", "fingerprint": "1b6fdb93588813346e971a898578cce5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_vector_add_sub", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 244}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19275, "scanner": "repobility", "fingerprint": "639b799269c6dd0456d40ce609241429", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_vector_scalar_multiplication", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 174}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19274, "scanner": "repobility", "fingerprint": "67e10f322be9c3e886de8feda97276e3", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_vector_indexing", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19273, "scanner": "repobility", "fingerprint": "62e13797fb0061e4d20fcfbcf667b7c9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_spatial_vector_constructors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_spatial.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19272, "scanner": "repobility", "fingerprint": "b7a81cf056dc0b7340dab5af52b871e4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_py_array_ops", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_scalar_ops.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19271, "scanner": "repobility", "fingerprint": "ecfe9e16aa3f6ed1e1109a17c2553343", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_struct_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 388}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19270, "scanner": "repobility", "fingerprint": "adf744c7fd023fb13c734bc0f74daa92", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_transform_array_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 333}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19269, "scanner": "repobility", "fingerprint": "89af6b033ea6e05e08155e41edc851af", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_transform_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 295}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19268, "scanner": "repobility", "fingerprint": "a053bf66982550d5c04523186adad32a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_conditional_setter", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 251}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19267, "scanner": "repobility", "fingerprint": "909b64f7cdd510fc7fd8ed0f90f5456d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_fill_overloads", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 218}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19266, "scanner": "repobility", "fingerprint": "ad59d37cb4c08da477499d0f220dd63e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_fill", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19265, "scanner": "repobility", "fingerprint": "f125ab77c11e572a05e7c4d4b0c92d08", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_accumulator_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 164}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19264, "scanner": "repobility", "fingerprint": "32f76ec0b6fd542c5ce1ab5727594350", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_array_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19263, "scanner": "repobility", "fingerprint": "4cb2f453e1c977f1bb1811081c554835", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_specialized_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19262, "scanner": "repobility", "fingerprint": "ff04c03477bc810b3ece6d2af8779180", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_generic_adder", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_generics.py"}, "region": {"startLine": 19}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19261, "scanner": "repobility", "fingerprint": "0ec384813d85d28da360271ff989a414", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_complex_tuple_functions", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 240}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19260, "scanner": "repobility", "fingerprint": "b06a6e39905bf0431a09743a58e6f49b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_loop_variadic_ellipsis", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 181}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19259, "scanner": "repobility", "fingerprint": "8f90cf0f36a77bb0375897503d067ac4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_loop_variadic_any", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 153}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19258, "scanner": "repobility", "fingerprint": "ae1284c0477ccb66f28915ad5326aaf9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_loop", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 134}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19257, "scanner": "repobility", "fingerprint": "2ad9888b23a917d4ebf0626718edb0c9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_user_func_with_tuple_arg", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19256, "scanner": "repobility", "fingerprint": "a3a71afc318a4dec2e0d6f7c744a54e7", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_user_func_with_multiple_return", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 79}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19255, "scanner": "repobility", "fingerprint": "a79a6f75d74760b53e29e52c9c5390d2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_builtin_with_multiple_return", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19254, "scanner": "repobility", "fingerprint": "822c6ef943d99474715f00f724cf1a88", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_basics", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_tuple.py"}, "region": {"startLine": 18}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19253, "scanner": "repobility", "fingerprint": "8d11092344027ba6d3ae1cb93a5e8a23", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_is_cuda_available", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19252, "scanner": "repobility", "fingerprint": "bd09c5c979c04f87b38a6e1f9588b057", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_is_cpu_available", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 149}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19251, "scanner": "repobility", "fingerprint": "13c4d322376badb80b660013931009e0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_get_preferred_device", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 133}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19250, "scanner": "repobility", "fingerprint": "a40c4aa1ac1ebc88cbdb1e7c2289e8d4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_get_devices", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19249, "scanner": "repobility", "fingerprint": "2407046cf10b029fb29e80ee097c9c9b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_get_device", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19248, "scanner": "repobility", "fingerprint": "9f6343aab797749179b886498b5b8cb2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_get_cuda_devices", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19247, "scanner": "repobility", "fingerprint": "8aae2a9c3f6a73103b8b4fbbf17462dc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_get_cuda_device_count", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19246, "scanner": "repobility", "fingerprint": "239cbae3793dadc01f5918b867703231", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_builtin_call", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19245, "scanner": "repobility", "fingerprint": "23a427bb07594c3c826b97cef26d942f", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_from_ptr", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19244, "scanner": "repobility", "fingerprint": "c30be93aa126c302eb151f6ccfa98eb0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_array_from_data", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_implicit_init.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19243, "scanner": "repobility", "fingerprint": "dbb7162850ec5d6ee159feaaf0507204", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_lerp", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_lerp.py"}, "region": {"startLine": 111}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19242, "scanner": "repobility", "fingerprint": "f04956cecbc5f2e7ed5500a120536073", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_static_len_query", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_static.py"}, "region": {"startLine": 597}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19241, "scanner": "repobility", "fingerprint": "eaf240604141278df11c4fa9e3a00768", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_static_if_else_elif", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_static.py"}, "region": {"startLine": 389}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19240, "scanner": "repobility", "fingerprint": "6f68991787ebffbe202025e39822724e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_function_variable", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_static.py"}, "region": {"startLine": 233}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19239, "scanner": "repobility", "fingerprint": "aa3631b0db615ad2fafd85ce7e7f33f0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_construct_static_nested_struct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_static.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19238, "scanner": "repobility", "fingerprint": "de07ba666adb60c37ae545352202917c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_construct_static_struct", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_static.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19237, "scanner": "repobility", "fingerprint": "556d8bd38e0945960e19f34c710a7623", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_static_global_variable", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_static.py"}, "region": {"startLine": 109}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19236, "scanner": "repobility", "fingerprint": "f31844a5e693ab5804467fc5f89b295d", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_future_annotations", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_future_annotations.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19235, "scanner": "repobility", "fingerprint": "d3fe8598d451995b87c0c52470ca8e2c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_rounding", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_rounding.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19234, "scanner": "repobility", "fingerprint": "66c2bc84df0937ceee7edc9b3e29f074", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_rounding.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19233, "scanner": "repobility", "fingerprint": "82cf0ec01bf030050b2664cc9a910e88", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_constructors_constant_length", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_constructors.py"}, "region": {"startLine": 247}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19232, "scanner": "repobility", "fingerprint": "3114e6b322d9ef0289f4e715bff8cae8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_constructors_default_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_constructors.py"}, "region": {"startLine": 229}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19231, "scanner": "repobility", "fingerprint": "d6eda0421e78886e47dea6bf0c52c7f8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_constructors_explicit_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_constructors.py"}, "region": {"startLine": 212}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19230, "scanner": "repobility", "fingerprint": "7db735b08ad7083463dccf0c9df92515", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_constructors_value_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_constructors.py"}, "region": {"startLine": 198}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19229, "scanner": "repobility", "fingerprint": "f3ed3c594f0db92da45cbf816c4f5e81", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_casting_constructors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_constructors.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19228, "scanner": "repobility", "fingerprint": "0a8d07b7923b1564965e55b8bc0033db", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_interpolate_reduction", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1845}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19227, "scanner": "repobility", "fingerprint": "bd6ff1ce86197acad1f592d286f55e5c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tet_shape_functions", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1535}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19226, "scanner": "repobility", "fingerprint": "922bca66357f7e34832ffd3a73c7494c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_tri_shape_functions", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1484}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19225, "scanner": "repobility", "fingerprint": "8f7854f079416d5569d944751ecf54e2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_cube_shape_functions", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1406}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19224, "scanner": "repobility", "fingerprint": "484df627d28bc275d0639064f33bfe53", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_square_shape_functions", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1328}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19223, "scanner": "repobility", "fingerprint": "39fc83dc957966b06a45ba0f592f95ef", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_shape_function_gradient", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1274}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19222, "scanner": "repobility", "fingerprint": "d0e63f3de294b9d43dc44cf39bb5f091", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_shape_function_trace", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1247}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19221, "scanner": "repobility", "fingerprint": "de5e6700faf5ae27b80eb25e1f335eee", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_shape_function_weight", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1187}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19220, "scanner": "repobility", "fingerprint": "8a9a6e850d5a08cdc7c70ae6c56cf83b", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_closest_point_queries", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 1026}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19219, "scanner": "repobility", "fingerprint": "00ac9785ec97b8b64bd15fb5c4144366", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_deformed_geometry_codimensional", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_fem.py"}, "region": {"startLine": 945}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19218, "scanner": "repobility", "fingerprint": "0beb61151b82d72ab45d8e612c30cfe0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_multi_valued_function_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 420}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19217, "scanner": "repobility", "fingerprint": "745729f076807695bc5c79c26d3d0242", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_3d_math_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 357}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19216, "scanner": "repobility", "fingerprint": "8c6a682a542569efdb01156e53a78c76", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_matrix_math_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 338}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19215, "scanner": "repobility", "fingerprint": "31fd15a613e66a8d367f6687448abf15", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_math_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 315}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19214, "scanner": "repobility", "fingerprint": "2ab3f09cd58ccf23365c9ffbdb5904ea", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_preserve_outputs_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 221}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19213, "scanner": "repobility", "fingerprint": "3f898a0750d4c0e0a4ef91e8cda94ce9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_for_loop_nested_for_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19212, "scanner": "repobility", "fingerprint": "88a48fbbce3ab25f04572f96cdbf5ff0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_for_loop_nested_if_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19211, "scanner": "repobility", "fingerprint": "61c2ff296435264c1e9cc4ee19ce3460", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_for_loop_graph_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19210, "scanner": "repobility", "fingerprint": "675813838be7fb1d7028359bcfe8c136", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_for_loop_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19209, "scanner": "repobility", "fingerprint": "34795f1f1ff7a0e90a39ae20e05c3562", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_scalar_grad", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_grad.py"}, "region": {"startLine": 18}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19208, "scanner": "repobility", "fingerprint": "a6dda82f0176fe05c8ec30cc96a10393", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_dense_compilation", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_dense.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19207, "scanner": "repobility", "fingerprint": "e4a324ae7f1e9b9f7c97a187644ebf4a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_bounds_single", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 412}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19206, "scanner": "repobility", "fingerprint": "5a37873bbab898b07e6b5016f2f17cde", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_bounds_none", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 403}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19205, "scanner": "repobility", "fingerprint": "0533ec032c7faad4464e021c38d6cb00", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_tuple_args", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 350}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19204, "scanner": "repobility", "fingerprint": "9b045e2b7e4caf4715a5ca79b5a99e47", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_cmd_adjoint_empty", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 312}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19203, "scanner": "repobility", "fingerprint": "d97cd1fdbaeb6b60d67eee37a63657ba", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_cmd_adjoint", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 290}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19202, "scanner": "repobility", "fingerprint": "67423dd65db996f7b1cf4b60563b72c9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_cmd_empty", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 265}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19201, "scanner": "repobility", "fingerprint": "23c0a96c2de359369775f3eff04355cb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_cmd_set_dim", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19200, "scanner": "repobility", "fingerprint": "35679d2056c7d2c154d2514f6130bbd2", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_cmd_set_ctype", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 199}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19199, "scanner": "repobility", "fingerprint": "cca10ba414e8b1777039b79fb8bcc1db", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_cmd_set_param", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 142}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19198, "scanner": "repobility", "fingerprint": "a1842559347358ab34bd89a8dafdb6e5", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_launch_cmd", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_launch.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19197, "scanner": "repobility", "fingerprint": "64bf6b47bfdeb4e8e21968f205f4d996", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors_default_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_lite.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19196, "scanner": "repobility", "fingerprint": "10ff0fb5c75e0eefbed768327d6b2fdb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_constructors_explicit_precision", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_lite.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19195, "scanner": "repobility", "fingerprint": "5ab364f7bd778f38baad6e1275daa165", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_vector_constructor_value_func", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_vec_lite.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19194, "scanner": "repobility", "fingerprint": "5ac0a077429cfec0b25cf61a82a2fd5c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_large_arrays_fast", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_large.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19193, "scanner": "repobility", "fingerprint": "b54793cd158451cafd9a6520105b50bc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_large_arrays_slow", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_large.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19192, "scanner": "repobility", "fingerprint": "343a6272a17829406836a632c67bd194", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_print_boolean_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_print.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19191, "scanner": "repobility", "fingerprint": "b7fe90c4b124d3f50c2a45e2443b13c4", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_print_numeric_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_print.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19190, "scanner": "repobility", "fingerprint": "90560c9d84058af724c3ba95459e5616", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_print_kernel", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_print.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19189, "scanner": "repobility", "fingerprint": "5b93571cc64212bf262a9239a5910923", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_overload", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 252}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19188, "scanner": "repobility", "fingerprint": "a4625795d502d6dca2ec6535f729b4c6", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_mat44", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 186}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19187, "scanner": "repobility", "fingerprint": "e712292b5ca277592741bb484395bfbd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_mat33", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19186, "scanner": "repobility", "fingerprint": "76015791e1425044c3d98622c4aaf388", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_mat22", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 137}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19185, "scanner": "repobility", "fingerprint": "d5f6a080329c21cbbde418f50dcfc133", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_vec4", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 111}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19184, "scanner": "repobility", "fingerprint": "a3ca41d22de41d4e4f560459451d2efe", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_vec3", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19183, "scanner": "repobility", "fingerprint": "6028572288ff365f5308ff6096ee5a13", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_matrix_index", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19182, "scanner": "repobility", "fingerprint": "1cd040b267b93c1291b0c891935c2061", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_vector_index", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 67}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19181, "scanner": "repobility", "fingerprint": "6857abe9a903b326305579085dc57494", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_scalar_int", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 31}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19180, "scanner": "repobility", "fingerprint": "7c17e0f7327dd8b4cb39296352f3626e", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_operators_scalar_float", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_operators.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19179, "scanner": "repobility", "fingerprint": "8314f1788ca33d41f2730ea0e7167132", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_function", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 156}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19178, "scanner": "repobility", "fingerprint": "3d8d5bb1f36b3fc672858ea528ce3534", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_function", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 127}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19177, "scanner": "repobility", "fingerprint": "2abdd4c476eee564a8a6a3ca5faab29c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_function", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19176, "scanner": "repobility", "fingerprint": "4170ae1454b6498917cde3331fc46b20", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_function", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 93}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19175, "scanner": "repobility", "fingerprint": "7b56c0c486d16aff62b197cd00c31e8a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_hash_global_capture", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19174, "scanner": "repobility", "fingerprint": "3007c73ddf100b0de7608ec6e91f38fb", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_closure_precedence", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19173, "scanner": "repobility", "fingerprint": "df99cf20a5c76b98735f6314369ec7f0", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_closure_capture", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19172, "scanner": "repobility", "fingerprint": "8d38230563a18785dacde62c16e0dd8c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_float", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19171, "scanner": "repobility", "fingerprint": "186c353008018864a38c865a73a4dc56", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_int", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19170, "scanner": "repobility", "fingerprint": "019ce2f79e1a3c2a3f06cc5924b441fd", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_bool", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_compile_consts.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19169, "scanner": "repobility", "fingerprint": "cc79033823c15f4c798db8c4d4b65abc", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_subscript_kernel_with_vectors", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_subscript_types.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19168, "scanner": "repobility", "fingerprint": "d0cc4d38c7c5d45e678705149a4630f9", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_options_backward_3", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_options.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19167, "scanner": "repobility", "fingerprint": "78166e93a934119f19d7dc41a09de28c", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_options_backward_2", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_options.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19166, "scanner": "repobility", "fingerprint": "7cf7fd3ab1bd52b9aaa02f63136423c8", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_devices_verify_cuda_device", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_devices.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "TEST001", "level": "error", "message": {"text": "Phantom test coverage \u2014 test files without real assertions"}, "properties": {"repobilityId": 19165, "scanner": "repobility", "fingerprint": "96e841f2d31918612db4781b1912a82a", "category": "test_quality", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "test_* without asserts: test_devices_map_cuda_device", "aljefra_cwe": ["CWE-1126"], "aljefra_owasp": null, "aljefra_pattern_slug": "phantom-test-coverage"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/tests/test_devices.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "ERRH003", "level": "error", "message": {"text": "except BaseException \u2014 catches SystemExit/KeyboardInterrupt"}, "properties": {"repobilityId": 18546, "scanner": "repobility", "fingerprint": "3bd61b46cff11e4a842dfd3fdb625086", "category": "error_handling", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "except KeyboardInterrupt", "aljefra_cwe": ["CWE-705"], "aljefra_owasp": null, "aljefra_pattern_slug": "overcatch-baseexception"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/ci/publishing/kitmaker_release.py"}, "region": {"startLine": 238}}}]}, {"ruleId": "ERRH001", "level": "error", "message": {"text": "Bare except: pass \u2014 silent failure"}, "properties": {"repobilityId": 17814, "scanner": "repobility", "fingerprint": "2f00a5c3ed6464fa1e7a6f4f7e370fcc", "category": "error_handling", "severity": "high", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: documentation/example path]", "evidence": {"snippet": "except: pass", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "bare-except-pass"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/fem/example_adaptive_grid.py"}, "region": {"startLine": 263}}}]}, {"ruleId": "ERRH001", "level": "error", "message": {"text": "Bare except: pass \u2014 silent failure"}, "properties": {"repobilityId": 17813, "scanner": "repobility", "fingerprint": "359a6053a30c69608be612348bd2fd54", "category": "error_handling", "severity": "high", "confidence": 0.45, "triageState": "open", "verdict": "likely_fp", "isResolved": false, "reason": " | [R34-retro auto-suppress: documentation/example path]", "evidence": {"snippet": "except: pass", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "bare-except-pass"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/examples/browse.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "ERRH001", "level": "error", "message": {"text": "Bare except: pass \u2014 silent failure"}, "properties": {"repobilityId": 17812, "scanner": "repobility", "fingerprint": "384e8aca0c83e8d6061e0d173b8d9507", "category": "error_handling", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "except: pass", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "bare-except-pass"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/jax_experimental/ffi.py"}, "region": {"startLine": 688}}}]}, {"ruleId": "ERRH001", "level": "error", "message": {"text": "Bare except: pass \u2014 silent failure"}, "properties": {"repobilityId": 17811, "scanner": "repobility", "fingerprint": "72e5a97646fd2b6486abb1235fa24d79", "category": "error_handling", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "except: pass", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "bare-except-pass"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/jax_experimental/ffi.py"}, "region": {"startLine": 315}}}]}, {"ruleId": "ERRH001", "level": "error", "message": {"text": "Bare except: pass \u2014 silent failure"}, "properties": {"repobilityId": 17810, "scanner": "repobility", "fingerprint": "f967b090d27a2234b3099dfe1039ddc1", "category": "error_handling", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "except: pass", "aljefra_cwe": ["CWE-755"], "aljefra_owasp": null, "aljefra_pattern_slug": "bare-except-pass"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/codegen.py"}, "region": {"startLine": 3979}}}]}, {"ruleId": "PATH001", "level": "error", "message": {"text": "Path traversal \u2014 user input in os.path.join"}, "properties": {"repobilityId": 15858, "scanner": "repobility", "fingerprint": "cc089e329113ec1b0e87505c85021cef", "category": "path_traversal", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "os.path.join(os.path.expanduser", "aljefra_cwe": ["CWE-22"], "aljefra_owasp": "A01:2021", "aljefra_pattern_slug": "path-traversal-os-join"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/packman/packmanconf.py"}, "region": {"startLine": 84}}}]}, {"ruleId": "PATH001", "level": "error", "message": {"text": "Path traversal \u2014 user input in os.path.join"}, "properties": {"repobilityId": 15857, "scanner": "repobility", "fingerprint": "4316642b27fc55b8f2ec3a8046c16e3e", "category": "path_traversal", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "os.path.join(\n                os.path.expanduser", "aljefra_cwe": ["CWE-22"], "aljefra_owasp": "A01:2021", "aljefra_pattern_slug": "path-traversal-os-join"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/packman/packmanconf.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "PATH001", "level": "error", "message": {"text": "Path traversal \u2014 user input in os.path.join"}, "properties": {"repobilityId": 15856, "scanner": "repobility", "fingerprint": "bfe9974abd00943f0416353602f4cdd9", "category": "path_traversal", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"snippet": "os.path.join(os.path.expanduser", "aljefra_cwe": ["CWE-22"], "aljefra_owasp": "A01:2021", "aljefra_pattern_slug": "path-traversal-os-join"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "warp/_src/thirdparty/appdirs.py"}, "region": {"startLine": 395}}}]}]}]}