Update autograder-home path in assignment.edn#4
Open
roele wants to merge 1 commit intojuleswhite:masterfrom
roele:patch-2
Open
Update autograder-home path in assignment.edn#4roele wants to merge 1 commit intojuleswhite:masterfrom roele:patch-2
roele wants to merge 1 commit intojuleswhite:masterfrom
roele:patch-2
Conversation
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) ```
kambleaa007
reviewed
May 1, 2020
kambleaa007
left a comment
There was a problem hiding this comment.
Assignement-home and autograder-home are both shhould be in root "./"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
autograder-homepath references a non-existing path and causes theAutoGradingto fail with following excecption.