* Add obj unit test * Add python dependency --------- Co-authored-by: 杨赫然 <heran.yang@seafile.com>
13 lines
213 B
Bash
Executable file
13 lines
213 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPT=${BASH_SOURCE[0]}
|
|
PROJECT_DIR=$(dirname "${SCRIPT}")
|
|
|
|
cd $PROJECT_DIR
|
|
|
|
export PYTHONPATH=$PROJECT_DIR:$PYTHONPATH
|
|
export SEAFILE_CONF_DIR=$PROJECT_DIR/tests/conf
|
|
|
|
ci/run.py --test-only
|