Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test_tools
s390x
1 parent 848bdbe commit be3e15dCopy full SHA for be3e15d
Lib/test/test_tools/test_freeze.py
@@ -12,6 +12,13 @@
12
with imports_under_tool('freeze', 'test'):
13
import freeze as helper
14
15
+# See gh-103053:
16
+skip_on_s390x_pgo = unittest.skipIf(
17
+ support.PGO and hasattr(os, 'uname') and os.uname().machine == 's390x',
18
+ 's390x with PGO takes too long',
19
+)
20
+
21
+@skip_on_s390x_pgo
22
@support.requires_zlib()
23
@unittest.skipIf(sys.platform.startswith('win'), 'not supported on Windows')
24
@support.skip_if_buildbot('not all buildbots have enough space')
0 commit comments