CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
test_numpy_pickle_utils.py10 linesDownload Raw Back to test
1from joblib.compressor import BinaryZlibFile2from joblib.testing import parametrize3 4 5@parametrize("filename", ["test", "test"])  # testing str and unicode names6def test_binary_zlib_file(tmpdir, filename):7    """Testing creation of files depending on the type of the filenames."""8    binary_file = BinaryZlibFile(tmpdir.join(filename).strpath, mode="wb")9    binary_file.close()10 
Aluode/PerceptionLabPortable · CoolFace