mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
0cf93e50b8
* Add executable permission to scripts/*.sh * Set -eu to the shebang in /scripts/*.sh * Fix client/python/scripts/*.sh
13 lines
267 B
Bash
Executable File
13 lines
267 B
Bash
Executable File
#!/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
|