11 lines
173 B
Bash
Executable File
11 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export PREFIX=""
|
|
if [ -d 'venv' ] ; then
|
|
export PREFIX="venv/bin/"
|
|
fi
|
|
|
|
${PREFIX}mypy src/httpx
|
|
${PREFIX}mypy src/ahttpx
|
|
${PREFIX}pytest --cov src/httpx tests
|