Skip to content

Commit 66273f4

Browse files
authored
Rust dep ci issue and warning in transaction py fix (#2670)
* suppress Rust CI failure on dependecies Signed-off-by: avifenesh <[email protected]> * Suppress warning for test_transaction_clear in test_transaction.py Signed-off-by: avifenesh <[email protected]> --------- Signed-off-by: avifenesh <[email protected]>
1 parent daa5205 commit 66273f4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

deny.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ yanked = "deny"
2424
ignore = [
2525
# Unmaintained dependency error that needs more attention due to nested dependencies
2626
"RUSTSEC-2024-0370",
27+
"RUSTSEC-2024-0384",
28+
"RUSTSEC-2024-0388",
2729
]
2830
# Threshold for security vulnerabilities, any vulnerability with a CVSS score
2931
# lower than the range specified will be ignored. Note that ignored advisories

python/python/tests/test_transaction.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,9 @@ async def test_standalone_transaction(self, glide_client: GlideClient):
10331033
assert result[5:13] == [2, 2, 2, [b"Bob", b"Alice"], 2, OK, None, 0]
10341034
assert result[13:] == expected
10351035

1036+
@pytest.mark.filterwarnings(
1037+
action="ignore", message="The test <Function test_transaction_clear>"
1038+
)
10361039
def test_transaction_clear(self):
10371040
transaction = Transaction()
10381041
transaction.info()

0 commit comments

Comments
 (0)