File: test

package info (click to toggle)
starlette 0.50.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,072 kB
  • sloc: python: 13,532; sh: 35; makefile: 6
file content (13 lines) | stat: -rwxr-xr-x 164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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