django-raise-exception-view is a Django view that raises an exception so you can test your logging setup.
Publishing releases to PyPI
To publish a new version of to PyPI, set the __version__ string in your package's raiseexception/__init__.py, then run:
# Run the tests against multiple environments
tox
# Publish to PyPI
./setup.py publish
# Tag (change 1.0.1 to the version you are publishing!)
git tag -a v1.0.1 -m 'Version 1.0.1'
git push --tags
Running the tests
To run the tests against the current environment:
./manage.py test
To run the tests against multiple environments, install tox using pip install tox, make sure you're not currently in a virtual environment, then simply run tox:
tox
What is new in this release:
- Packaging fix
Requirements:
- Python
- Django
Comments not found