summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Tweaks to coverage to exclude unittest framework things that aren't run.py36Jason Madden2017-08-023-1/+7
|
* Add Python 3.6, drop Python 3.3Jason Madden2017-08-0212-277/+272
| | | | | | | | - Fix tests under PyPy3 - Whitespace cleanup - Remove _u compat function. - Enable coveralls and a coverage environment - ~82% covered in one run.
* update bootstrap.pyAdam Groszer2016-04-201-15/+36
|
* svbTres Seaver2016-04-122-1/+6
|
* Prep 4.2.0 release.4.2.0Tres Seaver2016-04-122-2/+2
|
* Merge pull request #6 from zopefoundation/drop-py26-py32-supportTres Seaver2016-03-234-8/+6
|\ | | | | Drop support for Python 2.6 and 3.2.
| * Drop support for Python 2.6 and 3.2.drop-py26-py32-supportTres Seaver2016-03-234-8/+6
|/
* Merge pull request #5 from felixonmars/masterMarius Gedminas2015-11-136-2/+32
|\ | | | | Note explicit support for Python 3.5
| * Add back HTMLParseError as suggested by MariusFelix Yan2015-11-131-1/+20
| |
| * Note explicit support for Python 3.5Felix Yan2015-11-135-1/+12
|/
* Merge pull request #4 from gforcada/gforcada-patch-1Marius Gedminas2015-09-034-1/+18
|\ | | | | Add 'ignore' and 'ignore-attributes' to list of i18n valid attributes
| * Add changelog entryGil Forcada Codinachs2015-09-031-1/+2
| |
| * Allow i18n:ignore and i18n:ignore-attributesGil Forcada Codinachs2015-09-023-0/+16
|/ | | | | They are used by i18ndude to mark strings or attributes on a template that should not be translatable.
* svbTres Seaver2015-06-052-1/+6
|
* Prep 4.1.1 release.4.1.1Tres Seaver2015-06-052-2/+2
|
* GardenTres Seaver2015-06-051-2/+2
|
* Merge branch 'NextThought-py32'Tres Seaver2015-06-059-35/+74
|\
| * Changelog [skip ci]Jason Madden2015-06-051-1/+2
| |
| * Add Python3.2 support.Jason Madden2015-06-058-34/+72
|/
* PyPy3 now testable w/ zope.testrunner 4.4.7.Tres Seaver2015-04-022-6/+2
|
* Update bad-entity handling FBO pypy3.Tres Seaver2015-04-021-1/+4
|
* Add coverage testing.Tres Seaver2015-02-233-1/+24
|
* Fix import error uncovered by nose.Tres Seaver2015-02-231-2/+2
|
* Don't require scribbling on 'sys' to use 'runtest'.Tres Seaver2015-02-222-23/+21
| | | | Allow passing in 'argv' and 'out' from caller.
* Make 'test_files' nose-compatible.Tres Seaver2015-02-221-43/+38
| | | | | | | | - Don't use a testcase class w/ non-standard '__init__'; instead, synthesize testcases from files using 'unittest.FunctionTestCase'. - Use a generator to return synthesized tests to nose (since it doesn't know from zope.testrunners' 'test_suite()' convention.
* Hide non-directly-runnable testcase class from nose.Tres Seaver2015-02-222-6/+6
|
* Normalize suite construction.Tres Seaver2015-02-223-22/+22
|
* Drop test-module-as-script boilerplate.Tres Seaver2015-02-226-24/+0
|
* Suppress 'conver_charrefs' deprecation under Python 3.4.Tres Seaver2015-02-212-2/+9
| | | | Also, ensure that changed behavior in Python 3.5 won't affect us.
* Silence setuptools chatter during tests.Tres Seaver2015-02-211-1/+1
|
* svbTres Seaver2014-12-292-1/+7
|
* Prep 4.1.0 release.4.1.0Tres Seaver2014-12-292-2/+3
|
* Note blocker for PyPy3 support.Tres Seaver2014-12-293-0/+10
|
* Add support for Python 3.4Tres Seaver2014-12-295-5/+17
|
* Garden ReST.Tres Seaver2014-12-292-27/+28
| | | | [ci skip]
* Speed up Travis builds via 'sudo: false'Tres Seaver2014-12-201-0/+1
|
* Update to latest bootstrap.Tres Seaver2014-12-201-186/+98
|
* svbTres Seaver2014-01-132-1/+6
|
* Prep 4.0.0 release.4.0.0Tres Seaver2014-01-132-3/+3
|
* Rewrite the print testing so it works in Python 3.3.Maurits van Rees2014-01-131-2/+10
|
* Catch warnings in test_translate_existing.Maurits van Rees2014-01-132-12/+19
| | | | Otherwise a warning is printed each time you run the tests.
* Minor pep8 for long lines.Maurits van Rees2014-01-132-7/+14
|
* Merge branch 'master' into maurits-gettextMaurits van Rees2014-01-111-7/+7
|\
| * Try to work around build failure on TravisMarius Gedminas2013-09-261-7/+7
| | | | | | | | | | | | | | | | | | | | | | I can reproduce that failure locally, using tox. Only python 2.7 fails, Python 2.6 and 3.3 (and PyPy) are fine. The failure is a difference in filenames (relative versus absolute) in test_sa4.html. I've tried digging, but gave up. The failure appears if I run tox -e py27. It doesn't appear if I run tox -e py27 --develop. So let's tell Travis to use the latter, to at least catch new regressions.
* | Fix warning of msgid with different default for Python 3.Maurits van Rees2013-09-211-2/+8
| |
* | Fix possible UnicodeDecodeError in warning when msgid already exists.Maurits van Rees2013-09-213-3/+32
|/ | | | | | | | This happens when comparing 'Read more…' with 'Read moreā€¦'. That should not give a warning, because they are really the same, but that would need a fix somewhere else, in the code that gets the value of an i18n:attribute in a different way than an i18n:translate. Added test for the proper printing of the warning.
* modernize bootstrap.pyAdam Groszer2013-07-061-53/+165
|
* 'Updated Travis YAML.'Stephan Richter2013-03-041-0/+12
|
* Mention one rather important change in the changelogMarius Gedminas2013-02-262-0/+5
|
* Back to development: 4.0.0a2Marius Gedminas2013-02-152-1/+7
|