This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Nelson Lojo edited this page Jun 22, 2023
·
4 revisions
This repository contains the source code for the RSpec Autograder developed at UC Berkeley.
Add the following fields to info.json
in the question you would like to autograde
"gradingMethod": "External",
"externalGradingOptions": {
"enabled": true,
"image" : "saasbook/pl-rspec-autograder",
"entrypoint": "/grader/run.py",
"timeout" : 60
}
A question writer must create the following in their PrairieLearn question
- the folder
tests/
in the root directory of their question- subfolder
tests/common/
- which will contain the code that is shared between variants*
- json file
tests/meta.json
- which will contain
- the mapping of
_submission_file
as a value for the key"submission_file"
- (optional) the location to which additional submitted files would be copied
- the mapping of
- which will contain
- subfolder
tests/solution/
- which must contain the file
_submission_file
that has the instructor solution
- which must contain the file
- a number of subfolders
tests/suite<number>
- each of which contains the difference from the files in
tests/common/
expressed by including a modified copy of the file that should be replaced/added totests/common/
- each of which contains the difference from the files in
- subfolder
* This should include packaged gems (i.e. the result of bundle package --all && bundle install --development
or whichever package environment you wish to use)
The tests/
folder in your question should look something like this:
tests/
+-- common/
| +-- .bundle/
| +-- spec/
| +-- vendor/
| +-- Gemfile
| +-- Gemfile.lock
| `-- replaced.rb
|
+-- solution/
| +-- _submission_file # this will hold the instructor's "submission"
| |
| ... # any other submitted files can be included*
|
+-- var_description_of_this_variant/
| `-- replaced.rb # this file will replace the one in common
|
`-- meta.json # this will contain the aforementioned mappings
*The student would need to submit additional files in the file submission box on the right of each question, but this feature has not yet been tested