-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathrun-tests.sh
executable file
·63 lines (54 loc) · 1.17 KB
/
run-tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
venv=~/.venvs/venvdrfpipeline
env_name=dev
# support for using venv in other locations
if [[ "${USE_VENV}" != "" ]]; then
if [[ -e ${USE_VENV}/bin/activate ]]; then
echo "Using custom virtualenv: ${USE_VENV}"
venv=${USE_VENV}
else
echo "Did not find custom virtualenv: ${USE_VENV}"
exit 1
fi
fi
if [[ "${USE_ENV}" != "" ]]; then
env_name="${USE_ENV}"
fi
if [[ ! -e ./envs/${env_name}.env ]]; then
echo ""
echo "Failed to find env file: envs/${env_name}.env"
echo ""
exit 1
fi
echo "Activating pips: ${venv}/bin/activate"
. ${venv}/bin/activate
echo ""
echo "Sourcing: ./envs/${env_name}.env"
source ./envs/${env_name}.env
echo ""
if [[ "${SHARED_LOG_CFG}" != "" ]]; then
echo ""
echo "Logging config: ${SHARED_LOG_CFG}"
echo ""
fi
cd webapp
echo ""
echo "Running unit tests"
python manage.py test
last_status=$?
if [[ "${last_status}" == "0" ]]; then
echo ""
echo "PASSED - unit tests"
echo ""
cd ..
exit 0
else
echo ""
echo ""
echo "FAILED - unit tests - run manually with:"
echo ""
echo "cd webapp; python manage.py test"
echo ""
cd ..
exit 1
fi