-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrun_tests.sh
More file actions
executable file
·118 lines (109 loc) · 4.19 KB
/
Copy pathrun_tests.sh
File metadata and controls
executable file
·118 lines (109 loc) · 4.19 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/bin/bash
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: shared_models app"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b shared_models.test
echo "FINISHED RUNNING TESTS FOR: shared_models app"
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: projects app"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
mkdir ./media
mkdir ./media/projects
mkdir ./media/projects/temp
python3.8 manage.py test -b projects.test
echo "FINISHED RUNNING TESTS FOR: projects app"
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: travel app"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b travel.test
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: whalesdb"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b whalesdb.test
echo "FINISHED RUNNING TESTS FOR: whalesdb"
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: inventory"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b inventory.test
echo "FINISHED RUNNING TESTS FOR: inventory"
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: shiny"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b shiny.test
echo "FINISHED RUNNING TESTS FOR: shiny"
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: ihub"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b ihub.test
printf "\n"
echo "FINISHED RUNNING TESTS FOR: ihub"
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: csas"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b csas.test
echo "FINISHED RUNNING TESTS FOR: csas"
printf "\n"
printf "\n"
printf "\n"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
echo "RUNNING TESTS FOR: cruises"
printf "\n"
printf "#############################################################################################################################"
printf "\n"
python3.8 manage.py test -b cruises.test
echo "FINISHED RUNNING TESTS FOR: cruises"