mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-22 22:05:00 +00:00
9 lines
113 B
Bash
Executable File
9 lines
113 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
coverage run -m pytest
|
|
coverage report
|
|
coverage html --title "${@-coverage}"
|