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 following two tests are failing and are currently not running due to an immediate return. The issue is well detailed inline, and I am copying it here for reference. We should update them and re-enable them.
Test_Author_Queries::test__author_arg__user_is_coauthor__author_arg(): fails currently because WordPress generates query as post_author IN (id) which doesn't match our regex in the posts_where filter.
Test_Author_Queries::tests__author_name_arg_plus_tax_query__is_coauthor(): fails currently because our posts_join_filter doesn't add an exclusive JOIN on relationships + taxonomy to match the query mods we make. We'd need aliased JOINs on relationships + taxonomy on top of the JOIN that the tax query already adds.
The text was updated successfully, but these errors were encountered:
The following two tests are failing and are currently not running due to an immediate
return
. The issue is well detailed inline, and I am copying it here for reference. We should update them and re-enable them.Test_Author_Queries::test__author_arg__user_is_coauthor__author_arg()
: fails currently because WordPress generates query aspost_author IN (id)
which doesn't match our regex in the posts_where filter.Test_Author_Queries::tests__author_name_arg_plus_tax_query__is_coauthor()
: fails currently because our posts_join_filter doesn't add an exclusive JOIN on relationships + taxonomy to match the query mods we make. We'd need aliased JOINs on relationships + taxonomy on top of the JOIN that the tax query already adds.The text was updated successfully, but these errors were encountered: