Skip to content

Commit 7f7fce0

Browse files
committed
removed comments
1 parent f4742bd commit 7f7fce0

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

examples/04_python_static_analysis/config/config.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"autograding_method": "docker",
3+
"container_options": {
4+
"container_image": "dagemcn/dockerimages:default-test"
5+
},
26
"testcases" : [
37
{
48
"title" : "Python - Static Analysis",
@@ -7,12 +11,9 @@
711
// The first is to execute the student code, the second is to count the number of calls to the
812
// "print" function.
913
"command" : [ "python3 *.py",
10-
// "submitty_count token -l python Equal *.py",
11-
// "submitty_count token -l python Asterisk *.py",
12-
// "submitty_count token -l python Plus *.py" ],
13-
"submitty_count_ts -l python node = *.py",
14-
"submitty_count_ts -l python node * *.py",
15-
"submitty_count_ts -l python node + *.py" ],
14+
"submitty_count_ts python node = *.py",
15+
"submitty_count_ts python node * *.py",
16+
"submitty_count_ts python node + *.py" ],
1617
"points" : 4,
1718
"validation" : [
1819
// First, ensure that the student received the correct answer.
@@ -33,7 +34,7 @@
3334
// against the provided term (here, "greater-than-or-equal" is used).
3435
"comparison" : "ge",
3536
// The integer against which to compare.
36-
"term" : 5,
37+
"term" : 2,
3738

3839
// Message to the student.
3940
"failure_message" : "Re-read the problem instructions.",
@@ -47,7 +48,7 @@
4748
"actual_file" : "STDOUT_2.txt",
4849
"description" : "Number of multiplications",
4950
"comparison" : "ge",
50-
"term" : 7,
51+
"term" : 2,
5152
"failure_message" : "Re-read the problem instructions.",
5253
"show_message" : "on_failure",
5354
"show_actual" : "never"

examples/06_loop_types/config/config.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
"testcases" : [
33
{
44
"title" : "Python - Distinguish for and while Loops",
5-
// "command" : [ "submitty_count -l python node for *.py",
6-
// "submitty_count -l python token While *.py" ],
75
"command" : [ "submitty_count_ts -l python node for *.py",
86
"submitty_count_ts -l python node While *.py" ],
97
"points" : 2,

0 commit comments

Comments
 (0)