mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
12 lines
174 B
Bash
Executable File
12 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -d ".build" ]; then
|
|
virtualenv .build --python $1
|
|
fi
|
|
|
|
. .build/bin/activate
|
|
python build.py prepare $3
|
|
python build.py $2
|
|
python build.py test
|