mirror of https://github.com/tiangolo/fastapi.git
🔨 Move local coverage logic to its own script (#14166)
This commit is contained in:
parent
32b93b53fc
commit
485bfedf5d
|
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -x
|
||||
|
||||
coverage combine
|
||||
coverage report
|
||||
coverage html
|
||||
|
|
@ -4,6 +4,4 @@ set -e
|
|||
set -x
|
||||
|
||||
bash scripts/test.sh ${@}
|
||||
coverage combine
|
||||
coverage report
|
||||
coverage html
|
||||
bash scripts/coverage.sh
|
||||
|
|
|
|||
Loading…
Reference in New Issue