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
Currently, all of the testing for natsort is implemented as doctests. This was fine when natsort was just a single file with two functions, but since it has grown with new functionality things have gotten out of hand. I have also noticed that some doctests fail on python 2.6 because of the way it prints floating point numbers.
The doctests will be migrated to unit tests to use the pytest unit testing framework. This will help make the documentation and the code more clear, as well as allow for more thorough testing.
The text was updated successfully, but these errors were encountered:
Currently, all of the testing for
natsort
is implemented as doctests. This was fine whennatsort
was just a single file with two functions, but since it has grown with new functionality things have gotten out of hand. I have also noticed that some doctests fail on python 2.6 because of the way it prints floating point numbers.The doctests will be migrated to unit tests to use the pytest unit testing framework. This will help make the documentation and the code more clear, as well as allow for more thorough testing.
The text was updated successfully, but these errors were encountered: