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
The tests test_add_year.py::test_add_year_cli and test_add_year.py::test_add_year start to fail seemingly randomly in various PRs on different OS e.g. here. Looking deeper, failing test are using pandas==1.4.0, passing tests are using e.g. pandas==1.1.5. With upgrading pandas to 1.4.0 locally these errors can be replicated, while with version 1.1.5 the test succeed.
The text was updated successfully, but these errors were encountered:
df2_t[year_pre], df2_t[year_pp], year_pre, year_pp, yr
)
ValueError: cannot set using a list-like indexer with a different length than the value
NB #494 was started to simplify these very long methods that mostly duplicate upstream features and are also quite slow, but I lacked clear tests for the expected behaviour for some combinations of arguments.
The tests
test_add_year.py::test_add_year_cli
andtest_add_year.py::test_add_year
start to fail seemingly randomly in various PRs on different OS e.g. here. Looking deeper, failing test are usingpandas==1.4.0
, passing tests are using e.g.pandas==1.1.5
. With upgrading pandas to 1.4.0 locally these errors can be replicated, while with version 1.1.5 the test succeed.The text was updated successfully, but these errors were encountered: