From 907e613ff2af0076202818c59ebeced2952a87e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 5 Apr 2019 14:29:36 +0400 Subject: [PATCH] :wrench: Update test-conv-html.sh to allow extra params --- docs/release-notes.md | 2 ++ scripts/test-cov-html.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 2dfd2cd89..511400877 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -6,6 +6,8 @@ * `responses` can also be added to `.include_router()`, the updated docs are here: Bigger Applications. * PR #97 originally initiated by @barsi. +* Update `scripts/test-cov-html.sh` to allow passing extra parameters like `-vv`, for development. + ## 0.11.0 * Add `auto_error` parameter to security utility functions. Allowing them to be optional. Also allowing to have multiple alternative security schemes that are then checked in a single dependency instead of each one verifying and returning the error to the client automatically when not satisfied. PR #134. diff --git a/scripts/test-cov-html.sh b/scripts/test-cov-html.sh index 7baa0f7e3..7957277fc 100755 --- a/scripts/test-cov-html.sh +++ b/scripts/test-cov-html.sh @@ -3,4 +3,4 @@ set -e set -x -bash scripts/test.sh --cov-report=html +bash scripts/test.sh --cov-report=html ${@}