Skip to content

Commit e1cd062

Browse files
committed
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 <[email protected]>
1 parent 5655355 commit e1cd062

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration_tests/security/test_sec_audit.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ def test_cargo_audit():
2323
"""
2424
# Run command and raise exception if non-zero return code
2525
utils.run_cmd(
26-
'cargo audit --deny warnings -q', cwd=defs.FC_WORKSPACE_DIR)
26+
"cargo audit --deny warnings -q --ignore RUSTSEC-2021-0145",
27+
cwd=defs.FC_WORKSPACE_DIR,
28+
)

0 commit comments

Comments
 (0)