Various custom PyHamcrest matchers.
Install with pip:
pip install brunns-matchers
(As usual, use of a venv or virtualenv is recommended.)
Requires tox. Run make precommit
tells you if you're OK to commit. For more options, run:
make help
Requires hub, setuptools, wheel and twine. To release n.n.n
:
version="n.n.n"
make precommit && git commit -am"Release $version" && git push # If not already all pushed, which it should be.
hub release create $version -m"Release $version"
python setup.py sdist bdist_wheel
twine upload dist/*$version*
Quick version:
version="n.n.n"
git commit -am"Release $version" && git push && hub release create $version -m"Release $version" && python setup.py sdist bdist_wheel && twine upload dist/*$version*