diff options
| author | maxim-yurchuk <[email protected]> | 2024-10-09 12:29:46 +0300 |
|---|---|---|
| committer | maxim-yurchuk <[email protected]> | 2024-10-09 13:14:22 +0300 |
| commit | 9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80 (patch) | |
| tree | a8fb3181d5947c0d78cf402aa56e686130179049 /contrib/python/rsa | |
| parent | a44b779cd359f06c3ebbef4ec98c6b38609d9d85 (diff) | |
publishFullContrib: true for ydb
<HIDDEN_URL>
commit_hash:c82a80ac4594723cebf2c7387dec9c60217f603e
Diffstat (limited to 'contrib/python/rsa')
| -rw-r--r-- | contrib/python/rsa/py2/patches/01-fix-tests.patch | 15 | ||||
| -rw-r--r-- | contrib/python/rsa/py3/.yandex_meta/yamaker.yaml | 2 |
2 files changed, 17 insertions, 0 deletions
diff --git a/contrib/python/rsa/py2/patches/01-fix-tests.patch b/contrib/python/rsa/py2/patches/01-fix-tests.patch new file mode 100644 index 00000000000..a695e37f681 --- /dev/null +++ b/contrib/python/rsa/py2/patches/01-fix-tests.patch @@ -0,0 +1,15 @@ +--- contrib/python/rsa/py2/tests/test_load_save_keys.py (index) ++++ contrib/python/rsa/py2/tests/test_load_save_keys.py (working tree) +@@ -185,9 +185,11 @@ class PemTest(unittest.TestCase): + self.assertEqual(CLEAN_PUBLIC_PEM, pem) + + def test_load_from_disk(self): ++ from yatest.common import source_path ++ + """Test loading a PEM file from disk.""" + +- fname = os.path.join(os.path.dirname(__file__), 'private.pem') ++ fname = source_path('contrib/python/rsa/py2/tests/private.pem') + with open(fname, mode='rb') as privatefile: + keydata = privatefile.read() + privkey = rsa.key.PrivateKey.load_pkcs1(keydata) diff --git a/contrib/python/rsa/py3/.yandex_meta/yamaker.yaml b/contrib/python/rsa/py3/.yandex_meta/yamaker.yaml new file mode 100644 index 00000000000..e1217f0accc --- /dev/null +++ b/contrib/python/rsa/py3/.yandex_meta/yamaker.yaml @@ -0,0 +1,2 @@ +keep: + - tests/* |
