You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The output of the test will be stored in a file named
43
-
`test_results.json`.
105
+
### `docstring.cfg`
106
+
This is the `flake8` configuration file that will be used by [assertDocstringsCorrect](https://jmu-cs.github.io/jmu_python_gradescope_utils/jmu_test_case.html#jmu_gradescope_utils.jmu_test_case._JmuTestCase.assertDocstringsCorrect). The current default looks like this:
44
107
45
-
Once everything is working correctly, just zip the contents of the
46
-
autograder folder and upload to Gradescope:
108
+
```
109
+
[flake8]
110
+
select = D,DAR
111
+
ignore = D401
112
+
113
+
[pydocstyle]
114
+
convention=google
47
115
48
-
```bash
49
-
$ cd /your/autograder
50
-
$ zip -r autograder.zip .
116
+
[darglint]
117
+
docstring_style=google
51
118
```
119
+
120
+
The available error codes for the two plugins can be found here:
0 commit comments