forked from django-cms/django-cms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathruntests.sh
executable file
·104 lines (90 loc) · 2.38 KB
/
runtests.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/bin/bash
cd tests
args=("$@")
num_args=${#args[@]}
index=0
reuse_env=true
disable_coverage=true
django_trunk=false
python="python" # to ensure this script works if no python option is specified
while [ "$index" -lt "$num_args" ]
do
case "${args[$index]}" in
"--failfast")
failfast="--failfast"
;;
"--rebuild-env")
reuse_env=false
;;
"--with-coverage")
disable_coverage=false
;;
"--django-trunk")
django_trunk=true
;;
"--python")
let "index = $index + 1"
python="${args[$index]}"
;;
"--help")
echo ""
echo "usage:"
echo " runtests.sh"
echo " or runtests.sh [testcase]"
echo " or runtests.sh [flags] [testcase]"
echo ""
echo "flags:"
echo " --failfast - abort at first failing test"
echo " --with-coverage - enables coverage"
echo " --rebuild-env - run buildout before the tests"
echo " --django-trunk - run tests against django trunk"
echo " --python /path/to/python - python version to use to run the tests"
exit 1
;;
*)
suite="cms.${args[$index]}"
esac
let "index = $index + 1"
done
echo "using python at: $python"
if [ $reuse_env == false ]; then
echo "setting up test environment (this might take a while)..."
$python bootstrap.py
if [ $? != 0 ]; then
echo "bootstrap.py failed"
exit 1
fi
if [ $django_trunk == true ]; then
./bin/buildout -c django-svn.cfg
else
./bin/buildout
fi
if [ $? != 0 ]; then
echo "bin/buildout failed"
exit 1
fi
else
echo "reusing current buildout environment"
fi
if [ "$failfast" ]; then
echo "--failfast supplied, not using xmlrunner."
fi
if [ ! "$suite" ]; then
suite="cms"
echo "Running complete cms testsuite."
else
echo "Running cms test $suite."
fi
if [ $disable_coverage == false ]; then
./bin/coverage run --rcfile=.coveragerc testapp/manage.py test $suite $failfast
retcode=$?
echo "Post test actions..."
./bin/coverage xml
./bin/coverage html
else
./bin/django test $suite $failfast
retcode=$?
fi
cd ..
echo "done"
exit $retcode