arkouda icon indicating copy to clipboard operation
arkouda copied to clipboard

proto test `TestParquet` failures with default size

Open stress-tess opened this issue 6 months ago • 0 comments

I found this while making changes for https://github.com/Bears-R-Us/arkouda/issues/3616

make test-proto runs with --size = 100 but I found when running pytest on TestParquet class with the default size, I was hitting errors

# this passes
python3 -m pytest PROTO_tests/tests/io_test.py::TestParquet --size=100

# this doesn't
python3 -m pytest PROTO_tests/tests/io_test.py::TestParquet 

I dug into this a bit more and ran the first test in the class (test_read_and_write) in pycharm and it seems like we're getting different results

Expected :array([-204504372 -1385645093 1097969559 ... 0 0 0])
Actual   :array([450602059 -1393436889 -1761673406 ... -4251784308 2475215260 -4092838899])

stress-tess avatar Aug 05 '24 21:08 stress-tess