summaryrefslogtreecommitdiff
path: root/yaksh/scilab_code_evaluator.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-11-17 12:54:56 +0530
committerGitHub2016-11-17 12:54:56 +0530
commitaa6ed71496c4a36faed9b42104c8426345bdc2e3 (patch)
treee5ff410809c60e735cc1a64ce667ba1d4caa6cf5 /yaksh/scilab_code_evaluator.py
parent7ae8584a4f4d095e005d6239102c0f26611ac006 (diff)
parentc4a39baa980578b4e35452d7e1978b1bf0b38e13 (diff)
downloadonline_test-aa6ed71496c4a36faed9b42104c8426345bdc2e3.tar.gz
online_test-aa6ed71496c4a36faed9b42104c8426345bdc2e3.tar.bz2
online_test-aa6ed71496c4a36faed9b42104c8426345bdc2e3.zip
Merge pull request #152 from ankitjavalkar/partial
Partial Grading
Diffstat (limited to 'yaksh/scilab_code_evaluator.py')
-rw-r--r--yaksh/scilab_code_evaluator.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/yaksh/scilab_code_evaluator.py b/yaksh/scilab_code_evaluator.py
index 915491c..3c2d44c 100644
--- a/yaksh/scilab_code_evaluator.py
+++ b/yaksh/scilab_code_evaluator.py
@@ -16,6 +16,7 @@ class ScilabCodeEvaluator(CodeEvaluator):
"""Tests the Scilab code obtained from Code Server"""
def setup(self):
super(ScilabCodeEvaluator, self).setup()
+ self.files = []
self.submit_code_path = \
self.create_submit_code_file('function.sci')
@@ -26,8 +27,7 @@ class ScilabCodeEvaluator(CodeEvaluator):
delete_files(self.files)
super(ScilabCodeEvaluator, self).teardown()
- def check_code(self, user_answer, file_paths, test_case):
- self.files = []
+ def check_code(self, user_answer, file_paths, partial_grading, test_case, weight):
if file_paths:
self.files = copy_files(file_paths)
ref_code_path = test_case
@@ -37,6 +37,8 @@ class ScilabCodeEvaluator(CodeEvaluator):
self._remove_scilab_exit(user_answer.lstrip())
success = False
+ test_case_weight = 0.0
+
self.write_to_submit_code_file(self.submit_code_path, user_answer)
# Throw message if there are commmands that terminates scilab
add_err = ""
@@ -63,11 +65,12 @@ class ScilabCodeEvaluator(CodeEvaluator):
stdout = self._strip_output(stdout)
if proc.returncode == 5:
success, err = True, "Correct answer"
+ test_case_weight = float(weight) if partial_grading else 0.0
else:
err = add_err + stdout
else:
err = add_err + stderr
- return success, err
+ return success, err, test_case_weight
def _remove_scilab_exit(self, string):
"""