We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf655d commit 8dad811Copy full SHA for 8dad811
tests/malware_analyzer/pypi/test_pypi_sourcecode_analyzer.py
@@ -29,7 +29,6 @@ def get_rule_ids_list(path: str) -> set[str]:
29
"""
30
with open(path, encoding="utf8") as semgrep_yaml:
31
ruleset: dict[str, list] = yaml.safe_load(semgrep_yaml.read())
32
- __import__("pprint").pprint(ruleset)
33
return {rule["id"] for rule in ruleset["rules"]}
34
35
@@ -215,8 +214,6 @@ def test_disabling_rulesets(
215
214
216
result, analysis = analyzer.analyze(pypi_package_json)
217
218
- print(analysis)
219
-
220
assert result == HeuristicResult.FAIL
221
222
# ensure the type is correct
0 commit comments