From c27bc87afd68266da59af6e7f2b3b8cc8db13fad Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 10 Jun 2020 11:56:49 +0530 Subject: Allow moderator to hide test cases from the user --- yaksh/python_assertion_evaluator.py | 1 + 1 file changed, 1 insertion(+) (limited to 'yaksh/python_assertion_evaluator.py') diff --git a/yaksh/python_assertion_evaluator.py b/yaksh/python_assertion_evaluator.py index 4b016a1..368206a 100644 --- a/yaksh/python_assertion_evaluator.py +++ b/yaksh/python_assertion_evaluator.py @@ -24,6 +24,7 @@ class PythonAssertionEvaluator(BaseEvaluator): # Set test case data values self.test_case = test_case_data.get('test_case') self.weight = test_case_data.get('weight') + self.hidden = test_case_data.get('hidden') def teardown(self): # Delete the created file. -- cgit