mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
1c8d3cb05d
* simplify tests * imports * imports * formatting * removed cometml typing * simplify * changelog
14 lines
309 B
Bash
14 lines
309 B
Bash
#!/bin/bash
|
|
|
|
cd "$(dirname ${0})/.."
|
|
source scripts/helpers.sh
|
|
|
|
pip_required
|
|
|
|
echo "Creating test requirements...
|
|
To match the CI environment, this script should be run from a Unix-like system in Python 3.9."
|
|
|
|
cd test
|
|
pip install --upgrade pip-tools
|
|
pip-compile requirements.in --output-file requirements.txt
|