blob: 520f36a1ea6d44fc25f11d7c29b82413ba5ccbf0 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
set -e
export PYTHONPATH=$PYTHONPATH:$DIR
mkdir -p $DIR/tmp
cd $DIR
python ./test_environment/test_environment.py $@
|