We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9f48f commit 43b468dCopy full SHA for 43b468d
1 file changed
tests/test_archive.py
@@ -9,6 +9,7 @@
9
#
10
11
import os
12
+import platform
13
from pathlib import Path
14
15
import pytest
@@ -1691,7 +1692,7 @@ def test_extract_rar_with_invalid_path(self):
1691
1692
def test_extract_rar_with_trailing_data(self):
1693
test_file = self.get_test_loc('archive/rar/rar_trailing.rar')
1694
test_dir = self.get_temp_dir()
- if on_mac:
1695
+ if on_mac and platform.machine() == 'arm64':
1696
archive.extract_rar(test_file, test_dir)
1697
else:
1698
expected = Exception('Unknown error')
0 commit comments