@@ -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" )
3737def 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" )
6060def 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):
8282rsa_key_size_bytes = 2048 // 8
8383max_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