mirror of
https://github.com/fastapi/sqlmodel.git
synced 2025-08-14 09:30:27 +08:00

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
11 lines
125 B
Bash
Executable File
11 lines
125 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
coverage run -m pytest tests
|
|
coverage combine
|
|
coverage report
|
|
coverage html
|
|
coverage xml
|