Skip to content

Commit 4f6888c

Browse files
committed
Actually skip unit tests
1 parent c138e22 commit 4f6888c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_test_unstructured_client/unit/test_encryption.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def rsa_key_pair():
3333

3434
return private_key_pem, public_key_pem
3535

36-
@pytest.mark.ignore(reason="Encryption is not in the SDK yet")
36+
@pytest.mark.skip(reason="Encryption is not in the SDK yet")
3737
def test_encrypt_rsa(rsa_key_pair):
3838
private_key_pem, public_key_pem = rsa_key_pair
3939

@@ -56,7 +56,7 @@ def test_encrypt_rsa(rsa_key_pair):
5656
assert decrypted_text == plaintext
5757

5858

59-
@pytest.mark.ignore(reason="Encryption is not in the SDK yet")
59+
@pytest.mark.skip(reason="Encryption is not in the SDK yet")
6060
def test_encrypt_rsa_aes(rsa_key_pair):
6161
private_key_pem, public_key_pem = rsa_key_pair
6262

@@ -82,7 +82,7 @@ def test_encrypt_rsa_aes(rsa_key_pair):
8282
rsa_key_size_bytes = 2048 // 8
8383
max_payload_size = rsa_key_size_bytes - 66 # OAEP SHA256 overhead
8484

85-
@pytest.mark.ignore(reason="Encryption is not in the SDK yet")
85+
@pytest.mark.skip(reason="Encryption is not in the SDK yet")
8686
@pytest.mark.parametrize(("plaintext", "secret_type"), [
8787
("Short message", "rsa"),
8888
("A" * (max_payload_size), "rsa"), # Just at the RSA limit

0 commit comments

Comments
 (0)