Skip to content

Commit 395aa24

Browse files
committed
Skip test_base_interpreter on Android and iOS
Signed-off-by: Filipe Laíns <lains@riseup.net>
1 parent e2f6981 commit 395aa24

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_build_details.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import string
66
import unittest
77

8-
from test.support import is_emscripten, is_wasi
8+
from test.support import is_android, is_apple_mobile, is_emscripten, is_wasi
99

1010

1111
class FormatTestsBase:
@@ -117,6 +117,7 @@ def test_location(self):
117117
# Override generic format tests with tests for our specific implemenation.
118118

119119
@needs_installed_python
120+
@unittest.skipIf(is_android or is_apple_mobile, 'Android and iOS run tests via a custom testbed method that changes sys.executable')
120121
def test_base_interpreter(self):
121122
value = self.key('base_interpreter')
122123

0 commit comments

Comments
 (0)