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 6c4f1a4 commit 86fb4a4Copy full SHA for 86fb4a4
tests/tests_integration/test_datatypes.py
@@ -1,4 +1,5 @@
1
import os
2
+import random
3
4
import pytest
5
import test_utils
@@ -63,9 +64,9 @@ def test_transfer_datatypes(
63
64
65
# Unfortunately on Windows we are encountering 'The command line is too long'
66
# and so cannot test against all datatypes here.
- some_narrow_datatypes = canonical_configs.quick_get_narrow_datatypes()[
67
- :10
68
- ]
+ some_narrow_datatypes = random.sample(
+ canonical_configs.quick_get_narrow_datatypes(), 10
69
+ )
70
71
datatypes_used = self.get_narrow_only_datatypes_used(used=False)
72
for key in some_narrow_datatypes:
0 commit comments