File size: 263 Bytes
8766bc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
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
|