|
3 | 3 | // Each part will appear as a different submission box. |
4 | 4 | "part_names" : [ "Part 1", "Part 2", "Part 3" ], |
5 | 5 |
|
6 | | - // Submissions for each part are just placed in the part1, part2, etc. |
7 | | - // directories. From there, they can be graded in the same manner as any |
| 6 | + // Submissions for each part are just placed in the part1, part2, etc. |
| 7 | + // directories. From there, they can be graded in the same manner as any |
8 | 8 | // other submission. |
9 | 9 | "testcases" : [ |
10 | 10 | { |
11 | 11 | "title" : "Part 1 Compute square root", |
12 | | - "command" : "python part1/*.py", |
| 12 | + "command" : "python3 part1/*.py", |
13 | 13 | "points" : 3, |
14 | 14 | "validation" : [ |
15 | | - { |
| 15 | + { |
16 | 16 | "method" : "diff", |
17 | 17 | "actual_file" : "STDOUT.txt", |
18 | 18 | "description" : "Program Output", |
|
21 | 21 | ] |
22 | 22 | }, |
23 | 23 | { |
24 | | - "title" : "Part 2 Solve for x^2 + 5x + 6 = 0", |
25 | | - "command" : "python part2/*.py", |
| 24 | + "title" : "Part 2 Solve for x^2 + 5x + 6 = 0", |
| 25 | + "command" : "python3 part2/*.py", |
26 | 26 | "points" : 4, |
27 | 27 | "validation" : [ |
28 | | - { |
| 28 | + { |
29 | 29 | "method" : "diff", |
30 | 30 | "actual_file" : "STDOUT.txt", |
31 | 31 | "description" : "Program Output", |
|
35 | 35 | }, |
36 | 36 | { |
37 | 37 | "title" : "Part 3 Count from 1 to 10", |
38 | | - "command" : "python part3/*.py", |
| 38 | + "command" : "python3 part3/*.py", |
39 | 39 | "points" : 3, |
40 | 40 | "validation" : [ |
41 | | - { |
| 41 | + { |
42 | 42 | "method" : "diff", |
43 | 43 | "actual_file" : "STDOUT.txt", |
44 | 44 | "description" : "Program Output", |
|
0 commit comments