You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running tests locally on a fresh master build, 3 tests fail without any changes to code.
2 of the failures occur on test_it_detects_file_metadata where basic.csv and xlsx_with_zip_mimetype.xlsx produce incorrect mimetypes. Confirmed occurring on macos and ubuntu per @thomasjohns.
application/csv for the csv when it should be text/plain
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet for the xlsx file when it should be application/zip
test_node_stream_property_returns_at_byte_0_after_parse fails when the node._stream returns the byte position at 12 instead of 0. After some initial testing this seems to be occurring in the pd.read_csv in fables/parse.py/parse_csv
The text was updated successfully, but these errors were encountered:
When running tests locally on a fresh master build, 3 tests fail without any changes to code.
test_it_detects_file_metadata
wherebasic.csv
andxlsx_with_zip_mimetype.xlsx
produce incorrect mimetypes. Confirmed occurring on macos and ubuntu per @thomasjohns.application/csv
for the csv when it should betext/plain
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
for the xlsx file when it should beapplication/zip
test_node_stream_property_returns_at_byte_0_after_parse
fails when thenode._stream
returns the byte position at 12 instead of 0. After some initial testing this seems to be occurring in thepd.read_csv
infables/parse.py/parse_csv
The text was updated successfully, but these errors were encountered: