summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* - prepare release 5.105.1.0Jens Vagelpohl2022-11-061-1/+1
|
* - add missing pieces from PR #27Jens Vagelpohl2022-11-061-2/+15
|
* - update with meta/config and add support for Python 3.9, 3.10 and 3.11Jens Vagelpohl2022-11-031-14/+51
|
* Use extras=test in tox.ini. [skip ci]Jason Madden2020-01-201-2/+1
| | | | Per https://github.com/zopefoundation/zope.i18nmessageid/pull/19#discussion_r368547455 from @mgedmin
* Update tests_require and 'test' extra.Jason Madden2020-01-201-6/+2
| | | | | | Don't install nose, upstream no longer supports. We were actually testing with zope.testrunner on travis and in tox.ini so use that. make appveyor do the same.
* Add support for Python 3.8Marius Gedminas2019-11-121-1/+1
| | | | Also let's use the latest floating PyPy versions on Travis CI.
* Drop Python 3.4Marius Gedminas2019-04-301-1/+1
|
* Drop support for Python 3.3Marius Gedminas2018-08-091-1/+1
|
* Add suppot for Python 3.7Marius Gedminas2018-08-091-1/+1
|
* Use C extension in Python 3, and make Python version handle ``default`` the sameissue4Jason Madden2017-05-011-6/+10
| | | | | | | | | | | | Fixes #4 and fixes #5. Add a specific test case for both of these things. Enabling the C extension on Python 3 revealed more places where readonly attributes can raise different exceptions so fix those tests. Also add Python 3.6 to the supported list, and use zope.testrunner to workaround the namespace package issue.
* Drop support for Python 2.6 and 3.2.Tres Seaver2016-03-231-1/+1
|
* Note explicit support for Python 3.5Felix Yan2015-11-071-1/+1
|
* Test PyPy3.Tres Seaver2015-03-091-1/+1
|
* Use python 2.7 for coverage / docs.Tres Seaver2015-03-091-2/+2
|
* Switch to 'usedevelop = true' FBO nose / coverage.Tres Seaver2015-03-091-5/+1
|
* Silence setuptools/distutils chatter during test runs.Tres Seaver2015-03-091-1/+1
|
* Drop mention of Jython.Tres Seaver2015-03-091-7/+0
| | | | When tox / pip / virtualenv support it, it will run w/o special env.
* Note explicit support for Python 3.4.Tres Seaver2014-03-171-1/+1
|
* Add support for Python 3.3.Tres Seaver2012-11-211-1/+1
|
* Automate build of Sphinx HTML docs and running doctest snippets via tox.Tres Seaver2012-05-091-1/+10
|
* Add overlooked 'coverage' runner.Tres Seaver2012-04-171-1/+1
|
* Bring into line with other tox.ini.Tres Seaver2012-04-061-1/+19
|
* - Don't attempt to compile C extensions on PyPy or Jython.Chris McDonough2011-07-151-0/+11
- Add a tox.ini (see http://tox.readthedocs.org/en/latest/) for easier automated testing.