httpx/scripts/test
2025-09-16 18:59:11 +01:00

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