14 lines
166 B
Bash
Executable File
14 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
if [ -z $GITHUB_ACTIONS ]; then
|
|
scripts/check
|
|
fi
|
|
|
|
uv run coverage run -m pytest "$@"
|
|
|
|
if [ -z $GITHUB_ACTIONS ]; then
|
|
scripts/coverage
|
|
fi
|