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 bf0e8d1 commit 8458f6bCopy full SHA for 8458f6b
src/verify_distribution.py
@@ -172,6 +172,15 @@ def test_gil_disabled(self):
172
173
self.assertEqual(sysconfig.get_config_var("Py_GIL_DISABLED"), wanted)
174
175
+ @unittest.skipIf(
176
+ sys.version_info[:2] < (3, 14),
177
+ "zstd is only available in 3.14+",
178
+ )
179
+ def test_zstd_multithreaded(self):
180
+ from compression import zstd
181
+
182
+ assert zstd.CompressionParameter.nb_workers.bounds() == (0, 256)
183
184
@unittest.skipIf("TCL_LIBRARY" not in os.environ, "TCL_LIBRARY not set")
185
@unittest.skipIf("DISPLAY" not in os.environ, "DISPLAY not set")
186
def test_tkinter(self):
0 commit comments