File size: 267 Bytes
a03b3ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash -eu
cd "$(dirname ${0})/.."
source scripts/helpers.sh
pip_required
echo "Installing requirements before running tests..."
pip install --upgrade pip
pip install -r test/requirements.txt
pip install -r requirements-oauth.txt
pip install -e client/python
|