Skip to content

Commit 9adb2b2

Browse files
roypatdianpopa
authored andcommitted
Supress atty cargo audit warning
This warning is currently blocking our PR CI, and there is no remedy available, as there is no patched version of the atty crate available, and we do not know how long it will take for criterion to remove the dependency. Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
1 parent 390a007 commit 9adb2b2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/integration_tests/security/test_sec_audit.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@ def test_cargo_audit():
2121
@type: security
2222
"""
2323
# Run command and raise exception if non-zero return code
24-
utils.run_cmd("cargo audit --deny warnings -q", cwd=defs.FC_WORKSPACE_DIR)
24+
utils.run_cmd(
25+
"cargo audit --deny warnings -q --ignore RUSTSEC-2021-0145",
26+
cwd=defs.FC_WORKSPACE_DIR,
27+
)

0 commit comments

Comments
 (0)