diff --git a/scripts/coverage.sh b/scripts/coverage.sh deleted file mode 100755 index e07b51ec59..0000000000 --- a/scripts/coverage.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -set -e -set -x - -coverage combine -coverage report -coverage html diff --git a/scripts/format.sh b/scripts/format.sh deleted file mode 100755 index bf70f42e5f..0000000000 --- a/scripts/format.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -set -x - -ruff check fastapi tests docs_src scripts --fix -ruff format fastapi tests docs_src scripts diff --git a/scripts/lint.sh b/scripts/lint.sh deleted file mode 100755 index a7d1f2f665..0000000000 --- a/scripts/lint.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -set -e -set -x - -mypy fastapi -ty check -ruff check fastapi tests docs_src scripts -ruff format fastapi tests --check diff --git a/scripts/test-cov-html.sh b/scripts/test-cov-html.sh deleted file mode 100755 index 3397a57609..0000000000 --- a/scripts/test-cov-html.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -e -set -x - -bash scripts/test-cov.sh --cov-report=term-missing --cov-report=html ${@}