summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Release 3.5.13.5.1Chris Dent2022-06-221-1/+1
| | | | | * update tox to include py 39 * replace deprecated threading funcs
* Add testing support for Python 3.8Chris Dent2020-10-121-1/+1
| | | | 3.9 will come soon
* Pytest fixes (#9)Daniel Hahler2018-10-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * 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/
* Enable coverage reporting via codecov (#10)Daniel Hahler2018-10-301-1/+6
|
* Fix up testing after switch to pytestChris Dent2018-10-231-1/+1
| | | | | | | | | | | | | | pytest exposes many warnings, some but not all of which are cleaned up here. The main switch is to use html.escape instead of cgi.escape. This inspired the addition of 'future' to requirements. The remaining warnings are related to pytest deprecations or over-eager test discovery. It is perhaps ironic that the switch to pytest is to avoid nose being mostly dead, and now we are using features in pytest that pytest wants to make dead. These are left for later cleanups, which means that running the tests is noisy.
* Merge pull request #1 from cdent/pytestChris Dent2018-10-231-3/+3
|\ | | | | Switch from nose to pytest
| * Switch from nose to pytestpytestMarc Abramowitz2016-03-081-3/+3
| |
| * tox.ini: Measure test coveragetox_coverageMarc Abramowitz2016-03-071-0/+9
|
* Run tox with Python 3.6 and 3.7py37Miro Hron?ok2018-06-081-1/+1
|
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+9
See https://www.python.org/dev/peps/pep-0479/