File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
16_docker_network_python/config Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"max_submission_size" : 1000000 ,
3
+ // By default, show students a list of the actions taken for each testcase.
4
+ "publish_actions" : true ,
3
5
"testcases" : [
4
6
5
7
// *************** COMPILATION *****************
178
180
{
179
181
"title" : " Graphics program 1" ,
180
182
"command" : " ./a.out -input sierpinski_triangle.txt -size 400 -iters 0 -cubes" ,
183
+ // For this testcase, do not show students a list of actions
184
+ "publish_actions" : false ,
181
185
"actions" : [
182
186
{
183
187
"action" : " click and drag delta" ,
Original file line number Diff line number Diff line change 2
2
// autograding_method must be docker in order for networking to work. If you forget it,
3
3
// your assignment should fail to build.
4
4
"autograding_method" : " docker" ,
5
+ // By default, show students a list of the dispatcher actions taken for each testcase.
6
+ "publish_actions" : true ,
5
7
"container_options" : {
6
8
//States that a given testcase uses a router by default. (Default value is true)
7
9
"use_router" : true
18
20
// Each testcase creates a new, unique set of docker containers and networks.
19
21
"testcases" : [
20
22
{
23
+ // For this testcase, do not show students a list of dispatcher actions
24
+ "publish_actions" : false ,
21
25
//Despite the default being true, this testcase will not use a router.
22
26
"use_router" : false ,
23
27
"title" : " Simple Testcase, No Router" ,
You can’t perform that action at this time.
0 commit comments