This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
Releases: apiaryio/dredd-hooks-python
Releases · apiaryio/dredd-hooks-python
Handler options and ValueError fix
Exceptions are caught
Exceptions in hook files are caught and passed to stderr
where it is picked up by Dredd. This should help to solve issues like #32.
Hook files loaded in sorted order
Hook files are now loaded in alphabetical order.
See #26 for more details.
Importing local modules in hooks
Fixes issue #17 by adding the directory with hooks file into sys.path
Composable decorators
Improvements
- the decorators can be now combined together, one function can server for different hooks
- no need to do
sys.stdout.flush()
anymore it is added auto-magically
Improved error handling
Improved error handling and logging.