]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:wrench: Update test-conv-html.sh to allow extra params
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 5 Apr 2019 10:29:36 +0000 (14:29 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 5 Apr 2019 10:29:36 +0000 (14:29 +0400)
docs/release-notes.md
scripts/test-cov-html.sh

index 2dfd2cd89fb51b85dc85f5ea27b6072cd38e8248..5114008773768c873a08db31a89665bd9fa29f9e 100644 (file)
@@ -6,6 +6,8 @@
     * `responses` can also be added to `.include_router()`, the updated docs are here: <a href="https://fastapi.tiangolo.com/tutorial/bigger-applications/#add-some-custom-tags-and-responses" target="_blank">Bigger Applications</a>.
     * PR <a href="https://github.com/tiangolo/fastapi/pull/97" target="_blank">#97</a> originally initiated by <a href="https://github.com/barsi" target="_blank">@barsi</a>.
 
+* 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 <a href="https://github.com/tiangolo/fastapi/pull/134" target="_blank">#134</a>.
index 7baa0f7e3acfe771ea14a9ee134ec401eb3eaf3c..7957277fc354fc6fb9c3dd27391971b18fe93c69 100755 (executable)
@@ -3,4 +3,4 @@
 set -e
 set -x
 
-bash scripts/test.sh --cov-report=html
+bash scripts/test.sh --cov-report=html ${@}