forked from django-cms/django-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntests.sh
executable file
·86 lines (74 loc) · 1.81 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
#!/bin/bash
cd tests
args=("$@")
num_args=${#args[@]}
index=0
reuse_env=true
disable_coverage=true
while [ "$index" -lt "$num_args" ]
do
case "${args[$index]}" in
"--failfast")
failfast="--failfast"
;;
"--rebuild-env")
reuse_env=false
;;
"--with-coverage")
disable_coverage=false
;;
"--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"
exit 1
;;
*)
suite="cms.${args[$index]}"
esac
let "index = $index + 1"
done
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
./bin/buildout
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