Skip to content

Commit 0b44f96

Browse files
authored
[Feature:Autograding] Use the publish_actions option (#28)
1 parent c9f5998 commit 0b44f96

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

examples/15_GLFW/config/config.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"max_submission_size" : 1000000,
3+
// By default, show students a list of the actions taken for each testcase.
4+
"publish_actions" : true,
35
"testcases" : [
46

57
// *************** COMPILATION *****************
@@ -178,6 +180,8 @@
178180
{
179181
"title" : "Graphics program 1",
180182
"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,
181185
"actions" : [
182186
{
183187
"action" : "click and drag delta",

examples/16_docker_network_python/config/config.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// autograding_method must be docker in order for networking to work. If you forget it,
33
// your assignment should fail to build.
44
"autograding_method" : "docker",
5+
// By default, show students a list of the dispatcher actions taken for each testcase.
6+
"publish_actions" : true,
57
"container_options" : {
68
//States that a given testcase uses a router by default. (Default value is true)
79
"use_router" : true
@@ -18,6 +20,8 @@
1820
// Each testcase creates a new, unique set of docker containers and networks.
1921
"testcases" : [
2022
{
23+
// For this testcase, do not show students a list of dispatcher actions
24+
"publish_actions" : false,
2125
//Despite the default being true, this testcase will not use a router.
2226
"use_router" : false,
2327
"title" : "Simple Testcase, No Router",

0 commit comments

Comments
 (0)