Initial commit

This commit is contained in:
Paul Beech
2020-05-12 04:24:11 +01:00
commit bcf2c73bdf
50 changed files with 2866 additions and 0 deletions

24
library/tox.ini Normal file
View File

@@ -0,0 +1,24 @@
[tox]
envlist = py{27,35},qa
skip_missing_interpreters = True
[testenv]
commands =
python setup.py install
coverage run -m py.test -v -r wsx
coverage report
deps =
mock
pytest>=3.1
pytest-cov
[testenv:qa]
commands =
check-manifest --ignore tox.ini,tests*,.coveragerc
python setup.py check -m -r -s
flake8 --ignore E501
rstcheck README.rst
deps =
check-manifest
flake8
rstcheck