Skip to content

Commit 013f120

Browse files
committed
Progress on New Page
1 parent a91a2b4 commit 013f120

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

Gemfile.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ GEM
3838
faraday-net_http (3.1.0)
3939
net-http
4040
ffi (1.16.3)
41+
ffi (1.16.3-x64-mingw-ucrt)
4142
forwardable-extended (2.6.0)
4243
gemoji (4.1.0)
4344
github-pages (231)
@@ -233,6 +234,8 @@ GEM
233234
uri
234235
nokogiri (1.16.3-arm64-darwin)
235236
racc (~> 1.4)
237+
nokogiri (1.16.3-x64-mingw-ucrt)
238+
racc (~> 1.4)
236239
nokogiri (1.16.3-x86_64-linux)
237240
racc (~> 1.4)
238241
octokit (4.25.1)
@@ -270,19 +273,23 @@ GEM
270273
unf (0.1.4)
271274
unf_ext
272275
unf_ext (0.0.9.1)
276+
unf_ext (0.0.9.1-x64-mingw-ucrt)
273277
unicode-display_width (1.8.0)
274278
uri (0.13.0)
279+
wdm (0.2.0)
275280
webrick (1.8.1)
276281
yell (2.2.2)
277282

278283
PLATFORMS
279284
arm64-darwin-22
285+
x64-mingw-ucrt
280286
x86_64-linux
281287

282288
DEPENDENCIES
283289
github-pages (= 231)
284290
html-proofer (~> 3.19.4)
285291
json
292+
wdm (>= 0.1.1)
286293
webrick (~> 1.8)
287294

288295
BUNDLED WITH
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: Hidden Testcase Examples
3+
category: Instructor > Autograding
4+
redirect_from:
5+
- /instructor/assignment_configuration/hidden_testcase_examples
6+
---
7+
8+
### Hide Testcase Details and Score, Never Release
9+
10+
In your `config.json`, add this line to the testcase:
11+
```
12+
"hidden": true
13+
```
14+
15+
This is what it will look like for students:
16+
17+
#### Image goes here
18+
19+
#### Discussion of use
20+
21+
### Hide Testcase Details and Score, Release With Grades
22+
23+
In your `config.json`, add these lines to the testcase:
24+
```
25+
"hidden": true,
26+
"release_hidden_details": true
27+
```
28+
29+
This is what it will look like for students:
30+
31+
#### Image goes here
32+
33+
#### Discussion of use
34+
35+
### Hide Testcase Details, Show Score
36+
37+
In your `config.json`, **do not** change the `hidden` field.
38+
Instead, add these lines to the testcase:
39+
```
40+
"show_actual": never,
41+
"show_expected": never
42+
```
43+
Additionally, if working with image differences, add this line:
44+
```
45+
"show_difference_image": never
46+
```
47+
48+
This is what it will look like for students:
49+
50+
#### Image goes here
51+
52+
#### Discussion of use

navtreedata.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ var NAVTREE =
128128
[ "Validation", "/instructor/autograding/validation", null ],
129129
[ "Batch Regrade Submissions", "/instructor/autograding/batch_regrade", null ],
130130
[ "Sample Assignments", "/instructor/autograding/sample_assignments", null ],
131+
[ "Hidden Testcase Examples", "/instructor/autograding/hidden_testcase_examples", null ],
131132
[ "Docker Images", "/instructor/autograding/docker_images", null ],
132133
[ "Docker UI", "/instructor/autograding/docker_ui", null ],
133134
[ "Static Analysis", "/instructor/autograding/static_analysis/index", [

0 commit comments

Comments
 (0)