mirror of https://github.com/encode/starlette.git
11 lines
136 B
Plaintext
11 lines
136 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export PREFIX=""
|
||
|
if [ -d 'venv' ] ; then
|
||
|
export PREFIX="venv/bin/"
|
||
|
fi
|
||
|
|
||
|
set -x
|
||
|
|
||
|
${PREFIX}black starlette tests --check
|