Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update autograder-home path in assignment.edn #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update autograder-home path in assignment.edn
The `autograder-home` path references a non-existing path and causes the `AutoGrading` to fail with following excecption.
```
Exception in thread "main" java.io.FileNotFoundException: The Git repository at './.autograder/' could not be located.
	at clj_jgit.porcelain$load_repo.invokeStatic(porcelain.clj:68)
	at clj_jgit.porcelain$load_repo.invoke(porcelain.clj:57)
	at autograder.client.handin$asgn_git_repo.invokeStatic(handin.clj:99)
	at autograder.client.handin$asgn_git_repo.invoke(handin.clj:96)
	at autograder.client.handin$asgn_handin_patch.invokeStatic(handin.clj:170)
	at autograder.client.handin$asgn_handin_patch.invoke(handin.clj:164)
	at autograder.client.handin$submit_results.invokeStatic(handin.clj:283)
	at autograder.client.handin$submit_results.invoke(handin.clj:218)
	at autograder.client.handin$_submitResults.invokeStatic(handin.clj:305)
	at autograder.client.handin$_submitResults.invoke(handin.clj:304)
	at autograder.client.Handin.submitResults(Unknown Source)
	at org.magnum.dataup.AutoGradingSpec.grade(AutoGradingSpec.java:158)
	at org.magnum.dataup.AutoGrading.main(AutoGrading.java:64)
```
roele authored Jan 28, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a002872e4e4d64df23c3d04fdb0490044a7e1e15
2 changes: 1 addition & 1 deletion assignment.edn
Original file line number Diff line number Diff line change
@@ -4,4 +4,4 @@
:autograder.client.handin/assignment-submission-url "https://sg2tkysai5.execute-api.us-east-1.amazonaws.com/dev/submit"
:autograder.client.handin/sources ["src/"]
:autograder.client.handin/assignment-home "./"
:autograder.client.handin/autograder-home "./.autograder/"}
:autograder.client.handin/autograder-home "./"}