File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 58
58
59
59
TESTS_REQUIRE = [
60
60
'apache-beam' ,
61
- 'csiphash' ,
61
+ # 'csiphash', # https://github.com/tensorflow/datasets/issues/737
62
62
'jupyter' ,
63
63
'pytest' ,
64
64
]
123
123
124
124
EXTRAS_REQUIRE = {
125
125
'apache-beam' : ['apache-beam' ],
126
- 'siphash' : ['csiphash' ],
126
+ # https://github.com/tensorflow/datasets/issues/737
127
+ # 'siphash': ['csiphash'],
127
128
'tensorflow' : ['tensorflow>=1.13.0' ],
128
129
'tensorflow_gpu' : ['tensorflow-gpu>=1.13.0' ],
129
130
'tests' : TESTS_REQUIRE + all_dataset_extras ,
Original file line number Diff line number Diff line change @@ -91,15 +91,17 @@ def test_ints(self):
91
91
ints = list (range (100 ))
92
92
hashing ._CSIPHASH_AVAILABLE = False
93
93
self ._assert_hashes (ints , EXPECTED_INT_HASHES )
94
- hashing ._CSIPHASH_AVAILABLE = True
95
- self ._assert_hashes (ints , EXPECTED_INT_HASHES )
94
+ # https://github.com/tensorflow/datasets/issues/737
95
+ # hashing._CSIPHASH_AVAILABLE = True
96
+ # self._assert_hashes(ints, EXPECTED_INT_HASHES)
96
97
97
98
def test_ascii (self ):
98
99
letters = string .ascii_lowercase + string .ascii_uppercase
99
100
hashing ._CSIPHASH_AVAILABLE = False
100
101
self ._assert_hashes (letters , EXPECTED_ASCII_HASHES )
101
- hashing ._CSIPHASH_AVAILABLE = True
102
- self ._assert_hashes (letters , EXPECTED_ASCII_HASHES )
102
+ # https://github.com/tensorflow/datasets/issues/737
103
+ # hashing._CSIPHASH_AVAILABLE = True
104
+ # self._assert_hashes(letters, EXPECTED_ASCII_HASHES)
103
105
104
106
105
107
if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments