summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Added tests for natsort_keygen.Seth M Morton2016-05-031-0/+1
| | | | | These tests are not entirely thorough, but they demonstrate the function well enough. The rest of the testing is good.
* Consolidated test PEP8 exceptions.Seth M Morton2016-05-031-14/+1
|
* Split tests into many more files.Seth M Morton2016-05-031-1/+11
| | | | | | The testing files were getting too long, so they have been split into more targeted files. This will make further development less daunting.
* Solved some testing errors.Seth M Morton2016-05-011-1/+1
|
* Moved all non-testing compat functions to compat folder.Seth M Morton2015-06-241-0/+1
| | | | | | This makes the boilerplate at the top of the main natsort files simply import based, and all the try: excepts and if: else statements are in the files contained in the compat folder.
* Consolidated compat functions in testing.Seth M Morton2015-06-241-0/+1
| | | | | | | All the try: excepts: and if: else: statements in the testing code that is related to handling different python versions or different installed modules has been relegated to a compat folder that provide an easy and uniform interface.
* pep8 ignoresDerrick Petzold2015-06-211-0/+1
|
* Python 2.6 compatibility for the testsDerrick Petzold2015-06-211-1/+2
| | | | | | - Moved compatibility support to compat module. - Skip hypothesis tests if using Python 2.6. - Skip locale tests for de_DE on platforms that do not support it.
* Added flake8 section.Derrick Petzold2015-06-211-0/+3
|
* Fixed many PEP8 and Python3 violations.Seth M Morton2015-03-261-0/+1
|
* Added more granularity to tests.Seth M Morton2015-03-251-0/+2
| | | | | | | | The tests have been refactored to include as few asserts per test as was deemed reasonable. The tests on the "main" function have been refactored with the "mock" module.
* Separated testing files.Seth M Morton2014-09-251-0/+1
|
* Completed unittests. Fixed locale bug.Seth M Morton2014-09-011-0/+2
| | | | | | | | | | | | | | Added unit tests to test all the new features. Fixed a bug where locale-aware sorting was not doing anything. It was found that this was due to the locale module itself... a bit of Googling found that on Mac there are some known bugs. To remedy this, natsort will use PyICU if it is installed to do the sorting. Documentation has been updated to account for the new locale-aware sorting. This also resolves #14.
* Added expanded documentation.Seth M Morton2014-07-191-0/+2
| | | | | | | | | This documentation is in reST format, in a docs folder. The README has been pruned to only include what is needed to notify the user of what the package does, and directs them to the documentation. The tests and .travis.yml have been updated to account for the documentation.
* Package now passes pep8 tests.Seth M Morton2014-07-191-2/+3
| | | | | Some the test_natsort.py script has some line length rules ignored, but otherwise all rules are obeyed.
* Package now passes pyflakes tests.Seth M Morton2014-07-191-0/+7
| | | | | This was mostly import problems. The setup.cfg has been updated with options to refine what is checked.
* Natsort version 3.3.0 release.3.3.0Seth M Morton2014-06-281-0/+3
| | | | | | | | | | | | | | | This release provides the following updates: - Added a 'versorted' method for more convenient sorting of versions. - Updated command-line tool --number_type option with 'version' and 'ver' to make it more clear how to sort version numbers. - Moved unit-testing mechanism from being docstring-based to actual unit tests in actual functions. - This has provided the ability determine the coverage of the unit tests (99%). - This also makes the pydoc documentation a bit more clear. - Made docstrings for public functions mirror the README API. - Connected natsort development to Travis-CI to help ensure quality releases.
* Added setup.cfg for universal wheel supportSeth M Morton2014-05-051-0/+2
This was a pull request from ghickman.