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
In the file: pydatastructs/trees/tests/test_binary_trees.py, inside the _test_AVLTree() function, there is a function called test_select_rank(). This contains a code snippet (that tests the select() method) which is run only when the backend is Python. This is because if we run them in C++ backend, some CI checks fail. However, the code passes when run on my local machine (laptop - Ubuntu). This is the test_select_rank() function:
Description of the problem
In the file:
pydatastructs/trees/tests/test_binary_trees.py
, inside the _test_AVLTree() function, there is a function calledtest_select_rank()
. This contains a code snippet (that tests the select() method) which is run only when the backend is Python. This is because if we run them in C++ backend, some CI checks fail. However, the code passes when run on my local machine (laptop - Ubuntu). This is thetest_select_rank()
function:Notice the snippet that runs only when the backend is PYTHON:
This was added in the PR: #564
The text was updated successfully, but these errors were encountered: