summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Drop support for EOL PythonsJon Dufresne2018-09-171-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 2.6, 3.2, and 3.3 are end of life. They are no longer receiving bug fixes, including for security issues. Python 2.6 went EOL on 2013-10-29, Python 3.2 on 2016-02-20, and Python 3.3 on 2017-09-29. For additional details on support Python versions, see: https://devguide.python.org/#status-of-python-branches https://devguide.python.org/devcycle/#end-of-life-branches Removing support for EOL Pythons will reduce testing and maintenance resources. Using pypinfo, here are the PyPI download statistics for the last 30 days, showing low numbers for EOL Pythons. | python_version | percent | download_count | | -------------- | ------: | -------------: | | 2.7 | 61.50% | 785,047 | | 3.6 | 24.17% | 308,576 | | 3.5 | 8.09% | 103,320 | | 3.7 | 3.23% | 41,242 | | 3.4 | 2.81% | 35,877 | | 2.6 | 0.13% | 1,622 | | 3.3 | 0.06% | 711 | | 3.8 | 0.01% | 174 | | None | 0.00% | 19 | | 3.2 | 0.00% | 7 |
* add tests for ea0701dcarlgeorge2015-06-281-0/+3
|
* Use unittest2 for Python < 2.7.Benjamin Drung2014-03-261-1/+5
|
* Fix PEP 8 issues.Benjamin Drung2014-03-251-1/+2
|
* Compare results with basestring on Python 2 (Fixes #27).Benjamin Drung2014-03-251-8/+14
|
* Use assertIsInstance() instead of assertTrue(isinstance()).Benjamin Drung2014-03-251-12/+12
|
* Radical simplification ...Matěj Cepl2013-03-186-804/+27
| | | | | | | | | | | Don’t use third part modules when you don’t have to. This library uses setup like for thousands line program (including own test harness), but doesn't contain almost anything. I think radical simplification would be helpful. Fixes #15 Fixes #10
* add a starter test suiteTrent Mick2010-09-024-0/+804