(fixtures)
| 64 | @pytest.mark.e2e |
| 65 | @pytest.mark.skipif(yara is None, reason="Yara module/analyzer is not installed") |
| 66 | def test_complex_cli_analysis(fixtures): |
| 67 | with patch.object(DataFinder, "get_min_size", return_value=10) as m: |
| 68 | fixtures.scan_and_match("obfuscated.py", OBFUSCATED_DEFAULT_MATCHES) |
| 69 | |
| 70 | |
| 71 | @pytest.mark.e2e |
nothing calls this directly
no test coverage detected