summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Remove pytest-runner integration (#47)Colin Watson2020-01-271-1/+0
| | | | | | | | | | | | | `pytest-runner` describes itself as deprecated in its own package description, referring to https://github.com/pypa/setuptools/issues/1684. Using it in `setup_requires` means that any other package that depends on Paste has to install `pytest-runner` too, which is fairly heavyweight and unnecessary. (I ran into this when trying to update Launchpad to a less ancient version of Paste.) This does mean that `python setup.py test` no longer works, but, according to the setuptools issue above, that's deprecated anyway. Paste already has `tox` configuration that works well.
* Depend on pytest instead of nose (#13)Felix Yan2018-11-031-0/+1
|
* Pytest fixes (#9)Daniel Hahler2018-10-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | * pytest: fix collection warnings via __test__=False Fixes > "cannot collect test class %r because it has a __init__ constructor Ref: https://github.com/pytest-dev/pytest/issues/2007 * pytest: configure testpaths This is faster with test collection. * pytest: fix warning with doctests Fixes > /usr/lib/python3.7/site-packages/_pytest/python.py:764: > RemovedInPytest4Warning: usage of Generator.Function is deprecated, > please use pytest.Function instead * Minor fixes around s/py.test/pytest/
* Prepare a 3.0.0 release3.0.0Chris Dent2018-10-241-0/+2
| | | | | This is for the sake of getting something out there, including fixes to get stuff working with Python 3.7.
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+8
See https://www.python.org/dev/peps/pep-0479/