1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-29 11:16:43 +00:00

skip test_import_tar_with_dotdot for binary testing

This commit is contained in:
Thomas Waldmann 2023-06-10 14:17:07 +02:00
parent b7ce3b1156
commit 518c4fbca8
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -235,3 +235,8 @@ class RemoteArchiverTestCase(RemoteArchiverTestCaseBase, ArchiverTestCase):
@unittest.skipUnless("binary" in BORG_EXES, "no borg.exe available")
class ArchiverTestCaseBinary(ArchiverTestCaseBinaryBase, ArchiverTestCase):
"""runs the same tests, but via the borg binary"""
@unittest.skip("does not work with binaries")
def test_import_tar_with_dotdot(self):
# the test checks for a raised exception. that can't work if the code runs in a separate process.
pass