httpx/scripts/test
Tom Christie 19bf2112a1
Test Suite on GitHub Actions (#907)
* Test Suite on GitHub Actions

* Add linting checks

* Update badges. Drop unused codecov, pending GitHub action support,
2020-04-24 16:46:45 +01:00

15 lines
170 B
Bash
Executable File

#!/bin/sh -e
export PREFIX=""
if [ -d 'venv' ] ; then
export PREFIX="venv/bin/"
fi
set -x
if [ -z $GITHUB_ACTIONS ]; then
scripts/check
fi
${PREFIX}pytest $@